ag2 0.5.0b2__tar.gz → 0.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ag2 might be problematic. Click here for more details.
- {ag2-0.5.0b2/ag2.egg-info → ag2-0.5.1}/PKG-INFO +1 -1
- {ag2-0.5.0b2 → ag2-0.5.1/ag2.egg-info}/PKG-INFO +1 -1
- ag2-0.5.1/ag2.egg-info/requires.txt +1 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/setup.py +10 -1
- ag2-0.5.0b2/ag2.egg-info/requires.txt +0 -1
- {ag2-0.5.0b2 → ag2-0.5.1}/LICENSE +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/NOTICE.md +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/README.md +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/ag2.egg-info/SOURCES.txt +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/ag2.egg-info/dependency_links.txt +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/ag2.egg-info/top_level.txt +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/pyproject.toml +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/setup.cfg +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/setup_ag2.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_browser_utils.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_code_utils.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_function_utils.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_graph_utils.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_logging.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_notebook.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_pydantic.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_retrieve_utils.py +0 -0
- {ag2-0.5.0b2 → ag2-0.5.1}/test/test_token_count.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyautogen==0.5.1
|
|
@@ -62,6 +62,12 @@ retrieve_chat_pgvector = [*retrieve_chat, "pgvector>=0.2.5"]
|
|
|
62
62
|
|
|
63
63
|
graph_rag_falkor_db = ["graphrag_sdk==0.3.3", "falkordb>=1.0.10"]
|
|
64
64
|
|
|
65
|
+
neo4j_graph_rag = [
|
|
66
|
+
"llama_index==0.11.8",
|
|
67
|
+
"llama-index-graph-stores-neo4j=0.3.0",
|
|
68
|
+
"llma-index-core==0.11.8",
|
|
69
|
+
]
|
|
70
|
+
|
|
65
71
|
if current_os in ["Windows", "Darwin"]:
|
|
66
72
|
retrieve_chat_pgvector.extend(["psycopg[binary]>=3.1.18"])
|
|
67
73
|
elif current_os == "Linux":
|
|
@@ -70,6 +76,9 @@ elif current_os == "Linux":
|
|
|
70
76
|
# pysqlite3-binary used so it doesn't need to compile pysqlite3
|
|
71
77
|
autobuild = ["chromadb", "sentence-transformers", "huggingface-hub", "pysqlite3-binary"]
|
|
72
78
|
|
|
79
|
+
# NOTE: underscores in pip install, e.g. pip install ag2[graph_rag_falkor_db], will automatically
|
|
80
|
+
# convert to hyphens. So, do not include underscores in the name of extras.
|
|
81
|
+
|
|
73
82
|
extra_require = {
|
|
74
83
|
"test": [
|
|
75
84
|
"ipykernel",
|
|
@@ -87,7 +96,7 @@ extra_require = {
|
|
|
87
96
|
"retrievechat-pgvector": retrieve_chat_pgvector,
|
|
88
97
|
"retrievechat-mongodb": [*retrieve_chat, "pymongo>=4.0.0"],
|
|
89
98
|
"retrievechat-qdrant": [*retrieve_chat, "qdrant_client", "fastembed>=0.3.1"],
|
|
90
|
-
"
|
|
99
|
+
"graph-rag-falkor-db": graph_rag_falkor_db,
|
|
91
100
|
"autobuild": autobuild,
|
|
92
101
|
"captainagent": autobuild + ["pandas"],
|
|
93
102
|
"teachable": ["chromadb"],
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
pyautogen==0.5.0b2
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|