ag2 0.5.2__tar.gz → 0.5.3b1__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ag2
3
- Version: 0.5.2
3
+ Version: 0.5.3b1
4
4
  Summary: Alias package for pyautogen
5
5
  Home-page: https://github.com/ag2ai/ag2
6
6
  Author: Chi Wang & Qingyun Wu
@@ -29,6 +29,7 @@ Provides-Extra: lmm
29
29
  Provides-Extra: long-context
30
30
  Provides-Extra: mathchat
31
31
  Provides-Extra: mistral
32
+ Provides-Extra: neo4j
32
33
  Provides-Extra: ollama
33
34
  Provides-Extra: redis
34
35
  Provides-Extra: retrievechat
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ag2
3
- Version: 0.5.2
3
+ Version: 0.5.3b1
4
4
  Summary: Alias package for pyautogen
5
5
  Home-page: https://github.com/ag2ai/ag2
6
6
  Author: Chi Wang & Qingyun Wu
@@ -29,6 +29,7 @@ Provides-Extra: lmm
29
29
  Provides-Extra: long-context
30
30
  Provides-Extra: mathchat
31
31
  Provides-Extra: mistral
32
+ Provides-Extra: neo4j
32
33
  Provides-Extra: ollama
33
34
  Provides-Extra: redis
34
35
  Provides-Extra: retrievechat
@@ -0,0 +1,91 @@
1
+ pyautogen==0.5.3b1
2
+
3
+ [anthropic]
4
+ pyautogen[anthropic]==0.5.3b1
5
+
6
+ [autobuild]
7
+ pyautogen[autobuild]==0.5.3b1
8
+
9
+ [bedrock]
10
+ pyautogen[bedrock]==0.5.3b1
11
+
12
+ [blendsearch]
13
+ pyautogen[blendsearch]==0.5.3b1
14
+
15
+ [captainagent]
16
+ pyautogen[captainagent]==0.5.3b1
17
+
18
+ [cerebras]
19
+ pyautogen[cerebras]==0.5.3b1
20
+
21
+ [cohere]
22
+ pyautogen[cohere]==0.5.3b1
23
+
24
+ [cosmosdb]
25
+ pyautogen[cosmosdb]==0.5.3b1
26
+
27
+ [gemini]
28
+ pyautogen[gemini]==0.5.3b1
29
+
30
+ [graph]
31
+ pyautogen[graph]==0.5.3b1
32
+
33
+ [graph-rag-falkor-db]
34
+ pyautogen[graph-rag-falkor-db]==0.5.3b1
35
+
36
+ [groq]
37
+ pyautogen[groq]==0.5.3b1
38
+
39
+ [jupyter-executor]
40
+ pyautogen[jupyter-executor]==0.5.3b1
41
+
42
+ [lmm]
43
+ pyautogen[lmm]==0.5.3b1
44
+
45
+ [long-context]
46
+ pyautogen[long-context]==0.5.3b1
47
+
48
+ [mathchat]
49
+ pyautogen[mathchat]==0.5.3b1
50
+
51
+ [mistral]
52
+ pyautogen[mistral]==0.5.3b1
53
+
54
+ [neo4j]
55
+ pyautogen[neo4j]==0.5.3b1
56
+
57
+ [ollama]
58
+ pyautogen[ollama]==0.5.3b1
59
+
60
+ [redis]
61
+ pyautogen[redis]==0.5.3b1
62
+
63
+ [retrievechat]
64
+ pyautogen[retrievechat]==0.5.3b1
65
+
66
+ [retrievechat-mongodb]
67
+ pyautogen[retrievechat-mongodb]==0.5.3b1
68
+
69
+ [retrievechat-pgvector]
70
+ pyautogen[retrievechat-pgvector]==0.5.3b1
71
+
72
+ [retrievechat-qdrant]
73
+ pyautogen[retrievechat-qdrant]==0.5.3b1
74
+
75
+ [teachable]
76
+ pyautogen[teachable]==0.5.3b1
77
+
78
+ [test]
79
+ pyautogen[test]==0.5.3b1
80
+
81
+ [together]
82
+ pyautogen[together]==0.5.3b1
83
+
84
+ [types]
85
+ pyautogen[types]==0.5.3b1
86
+
87
+ [websockets]
88
+ pyautogen[websockets]==0.5.3b1
89
+
90
+ [websurfer]
91
+ pyautogen[websurfer]==0.5.3b1
@@ -62,10 +62,11 @@ 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",
65
+ neo4j = [
66
+ "docx2txt==0.8",
67
+ "llama-index==0.12.5",
68
+ "llama-index-graph-stores-neo4j==0.4.2",
69
+ "llama-index-core==0.12.5",
69
70
  ]
70
71
 
71
72
  if current_os in ["Windows", "Darwin"]:
@@ -121,6 +122,7 @@ extra_require = {
121
122
  "cohere": ["cohere>=5.5.8"],
122
123
  "ollama": ["ollama>=0.3.3", "fix_busted_json>=0.0.18"],
123
124
  "bedrock": ["boto3>=1.34.149"],
125
+ "neo4j": neo4j,
124
126
  }
125
127
 
126
128
  setuptools.setup(
@@ -54,6 +54,7 @@ setuptools.setup(
54
54
  "cohere": ["pyautogen[cohere]==" + __version__],
55
55
  "ollama": ["pyautogen[ollama]==" + __version__],
56
56
  "bedrock": ["pyautogen[bedrock]==" + __version__],
57
+ "neo4j": ["pyautogen[neo4j]==" + __version__],
57
58
  },
58
59
  url="https://github.com/ag2ai/ag2",
59
60
  author="Chi Wang & Qingyun Wu",
@@ -1,88 +0,0 @@
1
- pyautogen==0.5.2
2
-
3
- [anthropic]
4
- pyautogen[anthropic]==0.5.2
5
-
6
- [autobuild]
7
- pyautogen[autobuild]==0.5.2
8
-
9
- [bedrock]
10
- pyautogen[bedrock]==0.5.2
11
-
12
- [blendsearch]
13
- pyautogen[blendsearch]==0.5.2
14
-
15
- [captainagent]
16
- pyautogen[captainagent]==0.5.2
17
-
18
- [cerebras]
19
- pyautogen[cerebras]==0.5.2
20
-
21
- [cohere]
22
- pyautogen[cohere]==0.5.2
23
-
24
- [cosmosdb]
25
- pyautogen[cosmosdb]==0.5.2
26
-
27
- [gemini]
28
- pyautogen[gemini]==0.5.2
29
-
30
- [graph]
31
- pyautogen[graph]==0.5.2
32
-
33
- [graph-rag-falkor-db]
34
- pyautogen[graph-rag-falkor-db]==0.5.2
35
-
36
- [groq]
37
- pyautogen[groq]==0.5.2
38
-
39
- [jupyter-executor]
40
- pyautogen[jupyter-executor]==0.5.2
41
-
42
- [lmm]
43
- pyautogen[lmm]==0.5.2
44
-
45
- [long-context]
46
- pyautogen[long-context]==0.5.2
47
-
48
- [mathchat]
49
- pyautogen[mathchat]==0.5.2
50
-
51
- [mistral]
52
- pyautogen[mistral]==0.5.2
53
-
54
- [ollama]
55
- pyautogen[ollama]==0.5.2
56
-
57
- [redis]
58
- pyautogen[redis]==0.5.2
59
-
60
- [retrievechat]
61
- pyautogen[retrievechat]==0.5.2
62
-
63
- [retrievechat-mongodb]
64
- pyautogen[retrievechat-mongodb]==0.5.2
65
-
66
- [retrievechat-pgvector]
67
- pyautogen[retrievechat-pgvector]==0.5.2
68
-
69
- [retrievechat-qdrant]
70
- pyautogen[retrievechat-qdrant]==0.5.2
71
-
72
- [teachable]
73
- pyautogen[teachable]==0.5.2
74
-
75
- [test]
76
- pyautogen[test]==0.5.2
77
-
78
- [together]
79
- pyautogen[together]==0.5.2
80
-
81
- [types]
82
- pyautogen[types]==0.5.2
83
-
84
- [websockets]
85
- pyautogen[websockets]==0.5.2
86
-
87
- [websurfer]
88
- pyautogen[websurfer]==0.5.2
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