-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
69 lines (64 loc) · 1.94 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "prediction-market-agent"
version = "0.1.0"
description = ""
authors = ["Gnosis"]
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.10.0"
python-dotenv = "*"
openai = "*"
langchain = "^0.2.6"
langchain-experimental = "*"
langchain-community = "*"
langchain-openai = "*"
numexpr = "*"
flaml = "^2.2.0,<2.3.0" # Bug in newer version, because they started importing xgboost, without requiring it as a dependency.
beautifulsoup4 = "*"
google-search-results = "*"
pytest = "*"
llama-index = "~0.9.0"
duckduckgo-search = "*"
crewai = "^0.36.1"
replicate = "*"
typer = ">=0.9.0,<1.0.0"
web3 = "^6.14.0"
mypy = "^1.8.0"
types-requests = "^2.31.0.0"
black = "^23.12.1"
google-cloud-functions = "^1.16.0"
google-cloud-resource-manager = "^1.12.0"
poetry = "^1.7.1"
poetry-plugin-export = "^1.6.0"
functions-framework = "^3.5.0"
cron-validator = "^1.0.8"
prediction-market-agent-tooling = { version = "^0.57.7", extras = ["langchain", "google"] }
pydantic-settings = "^2.1.0"
autoflake = "^2.2.1"
isort = "^5.13.2"
markdownify = "^0.11.6"
tavily-python = "^0.5.0"
microchain-python = { git = "https://github.com/galatolofederico/microchain.git", rev = "de75f1d4a073b7c54f824b409733f4f70d40a61b" }
pysqlite3-binary = {version="^0.5.2.post3", markers = "sys_platform == 'linux'"}
psycopg2-binary = "^2.9.9"
sqlmodel = "^0.0.22"
farcaster = "^0.7.11"
streamlit-extras = "^0.4.2"
tweepy = "^4.14.0"
streamlit = "^1.40.0"
langchain-pinecone = "^0.1.1"
pinatapy-vourhey = "^0.2.0"
plotly = "^5.22.0"
prediction-prophet = { git = "https://github.com/agentcoinorg/predictionprophet.git", branch = "bump-autogen" }
transformers = "^4.43.3"
openfactverification-kongzii = "^0.2.0"
autogen-agentchat = "0.4.0.dev11"
autogen-core = "0.4.0.dev11"
autogen-ext = "0.4.0.dev11"
dune-spice = "^0.2.5"
python-web3-wallet = "^0.0.4"
[tool.poetry.group.dev.dependencies]
langchain-chroma = "^0.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"