ag2 0.8.4__tar.gz → 0.8.5a0__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.8.4/ag2.egg-info → ag2-0.8.5a0}/PKG-INFO +8 -3
- {ag2-0.8.4 → ag2-0.8.5a0}/README.md +2 -2
- {ag2-0.8.4 → ag2-0.8.5a0/ag2.egg-info}/PKG-INFO +8 -3
- ag2-0.8.5a0/ag2.egg-info/requires.txt +169 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/pyproject.toml +54 -17
- {ag2-0.8.4 → ag2-0.8.5a0}/setup_ag2.py +5 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_browser_utils.py +1 -1
- ag2-0.8.4/ag2.egg-info/requires.txt +0 -154
- {ag2-0.8.4 → ag2-0.8.5a0}/LICENSE +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/NOTICE.md +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/ag2.egg-info/SOURCES.txt +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/ag2.egg-info/dependency_links.txt +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/ag2.egg-info/top_level.txt +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/setup.cfg +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_code_utils.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_conftest.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_graph_utils.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_import.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_import_utils.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_json_utils.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_llm_config.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_logging.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_notebook.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_retrieve_utils.py +0 -0
- {ag2-0.8.4 → ag2-0.8.5a0}/test/test_token_count.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ag2
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.5a0
|
|
4
4
|
Summary: Alias package for pyautogen
|
|
5
5
|
Home-page: https://github.com/ag2ai/ag2
|
|
6
6
|
Author: Chi Wang & Qingyun Wu
|
|
@@ -25,9 +25,14 @@ Provides-Extra: graph-rag-falkor-db
|
|
|
25
25
|
Provides-Extra: rag
|
|
26
26
|
Provides-Extra: crawl4ai
|
|
27
27
|
Provides-Extra: browser-use
|
|
28
|
+
Provides-Extra: google-client
|
|
29
|
+
Provides-Extra: google-api
|
|
28
30
|
Provides-Extra: google-search
|
|
31
|
+
Provides-Extra: wikipedia
|
|
29
32
|
Provides-Extra: neo4j
|
|
30
33
|
Provides-Extra: twilio
|
|
34
|
+
Provides-Extra: mcp
|
|
35
|
+
Provides-Extra: mcp-proxy-gen
|
|
31
36
|
Provides-Extra: interop-crewai
|
|
32
37
|
Provides-Extra: interop-langchain
|
|
33
38
|
Provides-Extra: interop-pydantic-ai
|
|
@@ -335,11 +340,11 @@ chat_result = executor_agent.initiate_chat(
|
|
|
335
340
|
|
|
336
341
|
AG2 supports more advanced concepts to help you build your AI agent workflows. You can find more information in the documentation.
|
|
337
342
|
|
|
338
|
-
- [Structured Output](https://docs.ag2.ai/docs/user-guide/basic-concepts/structured-outputs)
|
|
343
|
+
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/llm-configuration/llm-configuration/structured-outputs)
|
|
339
344
|
- [Ending a conversation](https://docs.ag2.ai/docs/user-guide/basic-concepts/ending-a-chat)
|
|
340
345
|
- [Retrieval Augmented Generation (RAG)](https://docs.ag2.ai/docs/user-guide/advanced-concepts/rag)
|
|
341
346
|
- [Code Execution](https://docs.ag2.ai/docs/user-guide/advanced-concepts/code-execution)
|
|
342
|
-
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/
|
|
347
|
+
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/basic-concepts/tools/tools-with-secrets)
|
|
343
348
|
|
|
344
349
|
## Announcements
|
|
345
350
|
|
|
@@ -267,11 +267,11 @@ chat_result = executor_agent.initiate_chat(
|
|
|
267
267
|
|
|
268
268
|
AG2 supports more advanced concepts to help you build your AI agent workflows. You can find more information in the documentation.
|
|
269
269
|
|
|
270
|
-
- [Structured Output](https://docs.ag2.ai/docs/user-guide/basic-concepts/structured-outputs)
|
|
270
|
+
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/llm-configuration/llm-configuration/structured-outputs)
|
|
271
271
|
- [Ending a conversation](https://docs.ag2.ai/docs/user-guide/basic-concepts/ending-a-chat)
|
|
272
272
|
- [Retrieval Augmented Generation (RAG)](https://docs.ag2.ai/docs/user-guide/advanced-concepts/rag)
|
|
273
273
|
- [Code Execution](https://docs.ag2.ai/docs/user-guide/advanced-concepts/code-execution)
|
|
274
|
-
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/
|
|
274
|
+
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/basic-concepts/tools/tools-with-secrets)
|
|
275
275
|
|
|
276
276
|
## Announcements
|
|
277
277
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ag2
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.5a0
|
|
4
4
|
Summary: Alias package for pyautogen
|
|
5
5
|
Home-page: https://github.com/ag2ai/ag2
|
|
6
6
|
Author: Chi Wang & Qingyun Wu
|
|
@@ -25,9 +25,14 @@ Provides-Extra: graph-rag-falkor-db
|
|
|
25
25
|
Provides-Extra: rag
|
|
26
26
|
Provides-Extra: crawl4ai
|
|
27
27
|
Provides-Extra: browser-use
|
|
28
|
+
Provides-Extra: google-client
|
|
29
|
+
Provides-Extra: google-api
|
|
28
30
|
Provides-Extra: google-search
|
|
31
|
+
Provides-Extra: wikipedia
|
|
29
32
|
Provides-Extra: neo4j
|
|
30
33
|
Provides-Extra: twilio
|
|
34
|
+
Provides-Extra: mcp
|
|
35
|
+
Provides-Extra: mcp-proxy-gen
|
|
31
36
|
Provides-Extra: interop-crewai
|
|
32
37
|
Provides-Extra: interop-langchain
|
|
33
38
|
Provides-Extra: interop-pydantic-ai
|
|
@@ -335,11 +340,11 @@ chat_result = executor_agent.initiate_chat(
|
|
|
335
340
|
|
|
336
341
|
AG2 supports more advanced concepts to help you build your AI agent workflows. You can find more information in the documentation.
|
|
337
342
|
|
|
338
|
-
- [Structured Output](https://docs.ag2.ai/docs/user-guide/basic-concepts/structured-outputs)
|
|
343
|
+
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/llm-configuration/llm-configuration/structured-outputs)
|
|
339
344
|
- [Ending a conversation](https://docs.ag2.ai/docs/user-guide/basic-concepts/ending-a-chat)
|
|
340
345
|
- [Retrieval Augmented Generation (RAG)](https://docs.ag2.ai/docs/user-guide/advanced-concepts/rag)
|
|
341
346
|
- [Code Execution](https://docs.ag2.ai/docs/user-guide/advanced-concepts/code-execution)
|
|
342
|
-
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/
|
|
347
|
+
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/basic-concepts/tools/tools-with-secrets)
|
|
343
348
|
|
|
344
349
|
## Announcements
|
|
345
350
|
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
pyautogen==0.8.5alpha
|
|
2
|
+
|
|
3
|
+
[anthropic]
|
|
4
|
+
pyautogen[anthropic]==0.8.5alpha
|
|
5
|
+
|
|
6
|
+
[autobuild]
|
|
7
|
+
pyautogen[autobuild]==0.8.5alpha
|
|
8
|
+
|
|
9
|
+
[bedrock]
|
|
10
|
+
pyautogen[bedrock]==0.8.5alpha
|
|
11
|
+
|
|
12
|
+
[blendsearch]
|
|
13
|
+
pyautogen[blendsearch]==0.8.5alpha
|
|
14
|
+
|
|
15
|
+
[browser-use]
|
|
16
|
+
pyautogen[browser-use]==0.8.5alpha
|
|
17
|
+
|
|
18
|
+
[captainagent]
|
|
19
|
+
pyautogen[captainagent]==0.8.5alpha
|
|
20
|
+
|
|
21
|
+
[cerebras]
|
|
22
|
+
pyautogen[cerebras]==0.8.5alpha
|
|
23
|
+
|
|
24
|
+
[cohere]
|
|
25
|
+
pyautogen[cohere]==0.8.5alpha
|
|
26
|
+
|
|
27
|
+
[commsagent-discord]
|
|
28
|
+
pyautogen[commsagent-discord]==0.8.5alpha
|
|
29
|
+
|
|
30
|
+
[commsagent-slack]
|
|
31
|
+
pyautogen[commsagent-slack]==0.8.5alpha
|
|
32
|
+
|
|
33
|
+
[commsagent-telegram]
|
|
34
|
+
pyautogen[commsagent-telegram]==0.8.5alpha
|
|
35
|
+
|
|
36
|
+
[cosmosdb]
|
|
37
|
+
pyautogen[cosmosdb]==0.8.5alpha
|
|
38
|
+
|
|
39
|
+
[crawl4ai]
|
|
40
|
+
pyautogen[crawl4ai]==0.8.5alpha
|
|
41
|
+
|
|
42
|
+
[deepseek]
|
|
43
|
+
pyautogen[deepseek]==0.8.5alpha
|
|
44
|
+
|
|
45
|
+
[dev]
|
|
46
|
+
pyautogen[dev]==0.8.5alpha
|
|
47
|
+
|
|
48
|
+
[docs]
|
|
49
|
+
pyautogen[docs]==0.8.5alpha
|
|
50
|
+
|
|
51
|
+
[flaml]
|
|
52
|
+
pyautogen[flaml]==0.8.5alpha
|
|
53
|
+
|
|
54
|
+
[gemini]
|
|
55
|
+
pyautogen[gemini]==0.8.5alpha
|
|
56
|
+
|
|
57
|
+
[gemini-realtime]
|
|
58
|
+
pyautogen[gemini-realtime]==0.8.5alpha
|
|
59
|
+
|
|
60
|
+
[google-api]
|
|
61
|
+
pyautogen[google-api]==0.8.5alpha
|
|
62
|
+
|
|
63
|
+
[google-client]
|
|
64
|
+
pyautogen[google-client]==0.8.5alpha
|
|
65
|
+
|
|
66
|
+
[google-search]
|
|
67
|
+
pyautogen[google-search]==0.8.5alpha
|
|
68
|
+
|
|
69
|
+
[graph]
|
|
70
|
+
pyautogen[graph]==0.8.5alpha
|
|
71
|
+
|
|
72
|
+
[graph-rag-falkor-db]
|
|
73
|
+
pyautogen[graph-rag-falkor-db]==0.8.5alpha
|
|
74
|
+
|
|
75
|
+
[groq]
|
|
76
|
+
pyautogen[groq]==0.8.5alpha
|
|
77
|
+
|
|
78
|
+
[interop]
|
|
79
|
+
pyautogen[interop]==0.8.5alpha
|
|
80
|
+
|
|
81
|
+
[interop-crewai]
|
|
82
|
+
pyautogen[interop-crewai]==0.8.5alpha
|
|
83
|
+
|
|
84
|
+
[interop-langchain]
|
|
85
|
+
pyautogen[interop-langchain]==0.8.5alpha
|
|
86
|
+
|
|
87
|
+
[interop-pydantic-ai]
|
|
88
|
+
pyautogen[interop-pydantic-ai]==0.8.5alpha
|
|
89
|
+
|
|
90
|
+
[jupyter-executor]
|
|
91
|
+
pyautogen[jupyter-executor]==0.8.5alpha
|
|
92
|
+
|
|
93
|
+
[lint]
|
|
94
|
+
pyautogen[lint]==0.8.5alpha
|
|
95
|
+
|
|
96
|
+
[lmm]
|
|
97
|
+
pyautogen[lmm]==0.8.5alpha
|
|
98
|
+
|
|
99
|
+
[long-context]
|
|
100
|
+
pyautogen[long-context]==0.8.5alpha
|
|
101
|
+
|
|
102
|
+
[mathchat]
|
|
103
|
+
pyautogen[mathchat]==0.8.5alpha
|
|
104
|
+
|
|
105
|
+
[mcp]
|
|
106
|
+
pyautogen[mcp]==0.8.5alpha
|
|
107
|
+
|
|
108
|
+
[mcp-proxy-gen]
|
|
109
|
+
pyautogen[mcp-proxy-gen]==0.8.5alpha
|
|
110
|
+
|
|
111
|
+
[mistral]
|
|
112
|
+
pyautogen[mistral]==0.8.5alpha
|
|
113
|
+
|
|
114
|
+
[neo4j]
|
|
115
|
+
pyautogen[neo4j]==0.8.5alpha
|
|
116
|
+
|
|
117
|
+
[ollama]
|
|
118
|
+
pyautogen[ollama]==0.8.5alpha
|
|
119
|
+
|
|
120
|
+
[openai]
|
|
121
|
+
pyautogen[openai]==0.8.5alpha
|
|
122
|
+
|
|
123
|
+
[openai-realtime]
|
|
124
|
+
pyautogen[openai-realtime]==0.8.5alpha
|
|
125
|
+
|
|
126
|
+
[rag]
|
|
127
|
+
pyautogen[rag]==0.8.5alpha
|
|
128
|
+
|
|
129
|
+
[redis]
|
|
130
|
+
pyautogen[redis]==0.8.5alpha
|
|
131
|
+
|
|
132
|
+
[retrievechat]
|
|
133
|
+
pyautogen[retrievechat]==0.8.5alpha
|
|
134
|
+
|
|
135
|
+
[retrievechat-couchbase]
|
|
136
|
+
pyautogen[retrievechat-couchbase]==0.8.5alpha
|
|
137
|
+
|
|
138
|
+
[retrievechat-mongodb]
|
|
139
|
+
pyautogen[retrievechat-mongodb]==0.8.5alpha
|
|
140
|
+
|
|
141
|
+
[retrievechat-pgvector]
|
|
142
|
+
pyautogen[retrievechat-pgvector]==0.8.5alpha
|
|
143
|
+
|
|
144
|
+
[retrievechat-qdrant]
|
|
145
|
+
pyautogen[retrievechat-qdrant]==0.8.5alpha
|
|
146
|
+
|
|
147
|
+
[teachable]
|
|
148
|
+
pyautogen[teachable]==0.8.5alpha
|
|
149
|
+
|
|
150
|
+
[test]
|
|
151
|
+
pyautogen[test]==0.8.5alpha
|
|
152
|
+
|
|
153
|
+
[together]
|
|
154
|
+
pyautogen[together]==0.8.5alpha
|
|
155
|
+
|
|
156
|
+
[twilio]
|
|
157
|
+
pyautogen[twilio]==0.8.5alpha
|
|
158
|
+
|
|
159
|
+
[types]
|
|
160
|
+
pyautogen[types]==0.8.5alpha
|
|
161
|
+
|
|
162
|
+
[websockets]
|
|
163
|
+
pyautogen[websockets]==0.8.5alpha
|
|
164
|
+
|
|
165
|
+
[websurfer]
|
|
166
|
+
pyautogen[websurfer]==0.8.5alpha
|
|
167
|
+
|
|
168
|
+
[wikipedia]
|
|
169
|
+
pyautogen[wikipedia]==0.8.5alpha
|
|
@@ -129,7 +129,7 @@ retrievechat-couchbase = [
|
|
|
129
129
|
]
|
|
130
130
|
|
|
131
131
|
graph-rag-falkor-db = [
|
|
132
|
-
"graphrag_sdk==0.
|
|
132
|
+
"graphrag_sdk==0.7.1",
|
|
133
133
|
"falkordb>=1.0.10",
|
|
134
134
|
]
|
|
135
135
|
|
|
@@ -142,7 +142,7 @@ rag = [
|
|
|
142
142
|
"llama-index-vector-stores-chroma==0.4.1",
|
|
143
143
|
"llama-index-vector-stores-mongodb==0.6.0",
|
|
144
144
|
"llama-index-embeddings-huggingface==0.5.2",
|
|
145
|
-
"llama-index-llms-langchain==0.6.
|
|
145
|
+
"llama-index-llms-langchain==0.6.1",
|
|
146
146
|
"requests>=2.32.3,<3",
|
|
147
147
|
]
|
|
148
148
|
|
|
@@ -157,15 +157,29 @@ browser-use = [
|
|
|
157
157
|
"browser-use==0.1.37",
|
|
158
158
|
]
|
|
159
159
|
|
|
160
|
-
google-
|
|
160
|
+
google-client = [
|
|
161
161
|
"google-api-python-client>=2.163.0,<3.0",
|
|
162
162
|
]
|
|
163
163
|
|
|
164
|
+
google-api = [
|
|
165
|
+
"pyautogen[google-client]",
|
|
166
|
+
"google-auth-httplib2>=0.2.0,<0.3",
|
|
167
|
+
"google-auth-oauthlib>=1.2.1,<2.0",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
google-search = [
|
|
171
|
+
"pyautogen[google-client]",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
wikipedia = [
|
|
175
|
+
"wikipedia-api>=0.8.1, <1.0"
|
|
176
|
+
]
|
|
177
|
+
|
|
164
178
|
neo4j = [
|
|
165
|
-
"docx2txt==0.
|
|
179
|
+
"docx2txt==0.9",
|
|
166
180
|
"llama-index>=0.12,<1",
|
|
167
181
|
"llama-index-graph-stores-neo4j==0.4.6",
|
|
168
|
-
"llama-index-readers-web==0.3.
|
|
182
|
+
"llama-index-readers-web==0.3.8",
|
|
169
183
|
]
|
|
170
184
|
|
|
171
185
|
# used for agentchat_realtime_swarm notebook and realtime agent twilio demo
|
|
@@ -175,6 +189,19 @@ twilio = [
|
|
|
175
189
|
"twilio>=9.3.2"
|
|
176
190
|
]
|
|
177
191
|
|
|
192
|
+
mcp = [
|
|
193
|
+
# mcp 1.6.0 keeps hanging in stdio_client context manager
|
|
194
|
+
# test_mcp_issue_with_stdio_client_context_manager is failing for mcp=1.6.0
|
|
195
|
+
"mcp>=1.4.0,<1.6; python_version>='3.10'"
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
mcp-proxy-gen = [
|
|
199
|
+
"fastapi-code-generator==0.5.2",
|
|
200
|
+
"fastapi>=0.112,<1",
|
|
201
|
+
"requests", # do not pin it
|
|
202
|
+
"typer",
|
|
203
|
+
]
|
|
204
|
+
|
|
178
205
|
interop-crewai = [
|
|
179
206
|
"crewai[tools]>=0.76,<1; python_version>='3.10' and python_version<'3.13'",
|
|
180
207
|
"weaviate-client>=4,<5; python_version>='3.10' and python_version<'3.13'",
|
|
@@ -182,7 +209,7 @@ interop-crewai = [
|
|
|
182
209
|
interop-langchain = ["langchain-community>=0.3.12,<1"]
|
|
183
210
|
interop-pydantic-ai = ["pydantic-ai==0.0.31"]
|
|
184
211
|
interop =[
|
|
185
|
-
"pyautogen[interop-crewai, interop-langchain, interop-pydantic-ai]"
|
|
212
|
+
"pyautogen[interop-crewai, interop-langchain, interop-pydantic-ai]"
|
|
186
213
|
]
|
|
187
214
|
|
|
188
215
|
autobuild = ["chromadb", "sentence-transformers", "huggingface-hub"]
|
|
@@ -234,18 +261,18 @@ test = [
|
|
|
234
261
|
"nbconvert==7.16.6",
|
|
235
262
|
"nbformat==5.10.4",
|
|
236
263
|
"pytest-cov==6.0.0",
|
|
237
|
-
"pytest-asyncio==0.
|
|
264
|
+
"pytest-asyncio==0.26.0",
|
|
238
265
|
"pytest==8.3.5",
|
|
239
266
|
"mock==5.2.0",
|
|
240
267
|
"pandas==2.2.3",
|
|
241
|
-
"fastapi==0.115.
|
|
268
|
+
"fastapi==0.115.12",
|
|
242
269
|
"dirty-equals==0.9.0",
|
|
243
270
|
]
|
|
244
271
|
|
|
245
272
|
docs = [
|
|
246
|
-
"mkdocs-material==9.6.
|
|
273
|
+
"mkdocs-material==9.6.10",
|
|
247
274
|
"mkdocstrings[python]==0.29.0",
|
|
248
|
-
"mkdocs-literate-nav==0.6.
|
|
275
|
+
"mkdocs-literate-nav==0.6.2",
|
|
249
276
|
"mdx-include==1.4.2",
|
|
250
277
|
# currently problematic and cannot be upgraded
|
|
251
278
|
"mkdocs-git-revision-date-localized-plugin==1.3.0",
|
|
@@ -254,10 +281,9 @@ docs = [
|
|
|
254
281
|
"mkdocs-minify-plugin==0.8.0",
|
|
255
282
|
"mkdocs-macros-plugin==1.3.7", # includes with variables
|
|
256
283
|
"mkdocs-glightbox==0.4.0", # img zoom
|
|
257
|
-
"mkdocs-ezlinks-plugin==0.1.14", # converts abs links to rel links
|
|
258
284
|
"pillow", # required for mkdocs-glightbo
|
|
259
285
|
"cairosvg", # required for mkdocs-glightbo
|
|
260
|
-
"pdoc3==0.11.
|
|
286
|
+
"pdoc3==0.11.6",
|
|
261
287
|
"jinja2==3.1.6",
|
|
262
288
|
"pyyaml==6.0.2",
|
|
263
289
|
"termcolor==2.5.0",
|
|
@@ -270,7 +296,7 @@ types = [
|
|
|
270
296
|
]
|
|
271
297
|
|
|
272
298
|
lint = [
|
|
273
|
-
"ruff==0.
|
|
299
|
+
"ruff==0.11.2",
|
|
274
300
|
"codespell==2.4.1",
|
|
275
301
|
"pyupgrade-directories==0.3.0",
|
|
276
302
|
]
|
|
@@ -278,19 +304,22 @@ lint = [
|
|
|
278
304
|
dev = [
|
|
279
305
|
"toml==0.10.2",
|
|
280
306
|
"pyautogen[lint,test,types,docs]",
|
|
281
|
-
"pre-commit==4.
|
|
307
|
+
"pre-commit==4.2.0",
|
|
282
308
|
"detect-secrets==1.5.0",
|
|
283
|
-
"uv==0.6.
|
|
309
|
+
"uv==0.6.11",
|
|
284
310
|
]
|
|
285
311
|
|
|
286
312
|
|
|
287
313
|
[project.urls]
|
|
288
314
|
Homepage = "https://ag2.ai/"
|
|
289
|
-
Documentation = "https://docs.ag2.ai
|
|
315
|
+
Documentation = "https://docs.ag2.ai"
|
|
290
316
|
Tracker = "https://github.com/ag2ai/ag2/issues"
|
|
291
317
|
Source = "https://github.com/ag2ai/ag2"
|
|
292
318
|
Discord = "https://discord.gg/pAbnFJrkgZ"
|
|
293
319
|
|
|
320
|
+
[project.scripts]
|
|
321
|
+
mcp_proxy = "autogen.mcp.__main__:app"
|
|
322
|
+
|
|
294
323
|
[tool.hatch.version]
|
|
295
324
|
path = "autogen/version.py"
|
|
296
325
|
|
|
@@ -300,7 +329,13 @@ exclude = ["/test", "/notebook"]
|
|
|
300
329
|
|
|
301
330
|
[tool.hatch.build.targets.wheel]
|
|
302
331
|
packages = ["autogen"]
|
|
303
|
-
only-include = [
|
|
332
|
+
only-include = [
|
|
333
|
+
"autogen",
|
|
334
|
+
# not sure about this, probably is not needed
|
|
335
|
+
"autogen/agentchat/contrib/captainagent/tools",
|
|
336
|
+
# need for generation of MCP Servers from OpenAPI specification
|
|
337
|
+
"templates",
|
|
338
|
+
]
|
|
304
339
|
|
|
305
340
|
[tool.hatch.build.targets.sdist]
|
|
306
341
|
exclude = ["test", "notebook"]
|
|
@@ -342,9 +377,11 @@ markers = [
|
|
|
342
377
|
"graph_rag_falkor_db",
|
|
343
378
|
"neo4j",
|
|
344
379
|
"twilio",
|
|
380
|
+
"mcp",
|
|
345
381
|
"interop",
|
|
346
382
|
"browser_use",
|
|
347
383
|
"crawl4ai",
|
|
384
|
+
"google_api",
|
|
348
385
|
"google_search",
|
|
349
386
|
"websockets",
|
|
350
387
|
"commsagent_discord",
|
|
@@ -41,9 +41,14 @@ setuptools.setup(
|
|
|
41
41
|
"rag": ["pyautogen[rag]==" + __version__],
|
|
42
42
|
"crawl4ai": ["pyautogen[crawl4ai]==" + __version__],
|
|
43
43
|
"browser-use": ["pyautogen[browser-use]==" + __version__],
|
|
44
|
+
"google-client": ["pyautogen[google-client]==" + __version__],
|
|
45
|
+
"google-api": ["pyautogen[google-api]==" + __version__],
|
|
44
46
|
"google-search": ["pyautogen[google-search]==" + __version__],
|
|
47
|
+
"wikipedia": ["pyautogen[wikipedia]==" + __version__],
|
|
45
48
|
"neo4j": ["pyautogen[neo4j]==" + __version__],
|
|
46
49
|
"twilio": ["pyautogen[twilio]==" + __version__],
|
|
50
|
+
"mcp": ["pyautogen[mcp]==" + __version__],
|
|
51
|
+
"mcp-proxy-gen": ["pyautogen[mcp-proxy-gen]==" + __version__],
|
|
47
52
|
"interop-crewai": ["pyautogen[interop-crewai]==" + __version__],
|
|
48
53
|
"interop-langchain": ["pyautogen[interop-langchain]==" + __version__],
|
|
49
54
|
"interop-pydantic-ai": ["pyautogen[interop-pydantic-ai]==" + __version__],
|
|
@@ -18,7 +18,7 @@ import requests
|
|
|
18
18
|
from autogen.browser_utils import SimpleTextBrowser
|
|
19
19
|
from autogen.import_utils import optional_import_block, skip_on_missing_imports
|
|
20
20
|
|
|
21
|
-
BLOG_POST_URL = "https://docs.ag2.ai/docs/blog/2023
|
|
21
|
+
BLOG_POST_URL = "https://docs.ag2.ai/docs/blog/2023/04/21/LLM-tuning-math/"
|
|
22
22
|
BLOG_POST_TITLE = "Does Model and Inference Parameter Matter in LLM Applications? - A Case Study for MATH - AG2"
|
|
23
23
|
BLOG_POST_STRING = "Large language models (LLMs) are powerful tools that can generate natural language texts for various applications, such as chatbots, summarization, translation, and more. GPT-4 is currently the state of the art LLM in the world. Is model selection irrelevant? What about inference parameters?"
|
|
24
24
|
|
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
pyautogen==0.8.4
|
|
2
|
-
|
|
3
|
-
[anthropic]
|
|
4
|
-
pyautogen[anthropic]==0.8.4
|
|
5
|
-
|
|
6
|
-
[autobuild]
|
|
7
|
-
pyautogen[autobuild]==0.8.4
|
|
8
|
-
|
|
9
|
-
[bedrock]
|
|
10
|
-
pyautogen[bedrock]==0.8.4
|
|
11
|
-
|
|
12
|
-
[blendsearch]
|
|
13
|
-
pyautogen[blendsearch]==0.8.4
|
|
14
|
-
|
|
15
|
-
[browser-use]
|
|
16
|
-
pyautogen[browser-use]==0.8.4
|
|
17
|
-
|
|
18
|
-
[captainagent]
|
|
19
|
-
pyautogen[captainagent]==0.8.4
|
|
20
|
-
|
|
21
|
-
[cerebras]
|
|
22
|
-
pyautogen[cerebras]==0.8.4
|
|
23
|
-
|
|
24
|
-
[cohere]
|
|
25
|
-
pyautogen[cohere]==0.8.4
|
|
26
|
-
|
|
27
|
-
[commsagent-discord]
|
|
28
|
-
pyautogen[commsagent-discord]==0.8.4
|
|
29
|
-
|
|
30
|
-
[commsagent-slack]
|
|
31
|
-
pyautogen[commsagent-slack]==0.8.4
|
|
32
|
-
|
|
33
|
-
[commsagent-telegram]
|
|
34
|
-
pyautogen[commsagent-telegram]==0.8.4
|
|
35
|
-
|
|
36
|
-
[cosmosdb]
|
|
37
|
-
pyautogen[cosmosdb]==0.8.4
|
|
38
|
-
|
|
39
|
-
[crawl4ai]
|
|
40
|
-
pyautogen[crawl4ai]==0.8.4
|
|
41
|
-
|
|
42
|
-
[deepseek]
|
|
43
|
-
pyautogen[deepseek]==0.8.4
|
|
44
|
-
|
|
45
|
-
[dev]
|
|
46
|
-
pyautogen[dev]==0.8.4
|
|
47
|
-
|
|
48
|
-
[docs]
|
|
49
|
-
pyautogen[docs]==0.8.4
|
|
50
|
-
|
|
51
|
-
[flaml]
|
|
52
|
-
pyautogen[flaml]==0.8.4
|
|
53
|
-
|
|
54
|
-
[gemini]
|
|
55
|
-
pyautogen[gemini]==0.8.4
|
|
56
|
-
|
|
57
|
-
[gemini-realtime]
|
|
58
|
-
pyautogen[gemini-realtime]==0.8.4
|
|
59
|
-
|
|
60
|
-
[google-search]
|
|
61
|
-
pyautogen[google-search]==0.8.4
|
|
62
|
-
|
|
63
|
-
[graph]
|
|
64
|
-
pyautogen[graph]==0.8.4
|
|
65
|
-
|
|
66
|
-
[graph-rag-falkor-db]
|
|
67
|
-
pyautogen[graph-rag-falkor-db]==0.8.4
|
|
68
|
-
|
|
69
|
-
[groq]
|
|
70
|
-
pyautogen[groq]==0.8.4
|
|
71
|
-
|
|
72
|
-
[interop]
|
|
73
|
-
pyautogen[interop]==0.8.4
|
|
74
|
-
|
|
75
|
-
[interop-crewai]
|
|
76
|
-
pyautogen[interop-crewai]==0.8.4
|
|
77
|
-
|
|
78
|
-
[interop-langchain]
|
|
79
|
-
pyautogen[interop-langchain]==0.8.4
|
|
80
|
-
|
|
81
|
-
[interop-pydantic-ai]
|
|
82
|
-
pyautogen[interop-pydantic-ai]==0.8.4
|
|
83
|
-
|
|
84
|
-
[jupyter-executor]
|
|
85
|
-
pyautogen[jupyter-executor]==0.8.4
|
|
86
|
-
|
|
87
|
-
[lint]
|
|
88
|
-
pyautogen[lint]==0.8.4
|
|
89
|
-
|
|
90
|
-
[lmm]
|
|
91
|
-
pyautogen[lmm]==0.8.4
|
|
92
|
-
|
|
93
|
-
[long-context]
|
|
94
|
-
pyautogen[long-context]==0.8.4
|
|
95
|
-
|
|
96
|
-
[mathchat]
|
|
97
|
-
pyautogen[mathchat]==0.8.4
|
|
98
|
-
|
|
99
|
-
[mistral]
|
|
100
|
-
pyautogen[mistral]==0.8.4
|
|
101
|
-
|
|
102
|
-
[neo4j]
|
|
103
|
-
pyautogen[neo4j]==0.8.4
|
|
104
|
-
|
|
105
|
-
[ollama]
|
|
106
|
-
pyautogen[ollama]==0.8.4
|
|
107
|
-
|
|
108
|
-
[openai]
|
|
109
|
-
pyautogen[openai]==0.8.4
|
|
110
|
-
|
|
111
|
-
[openai-realtime]
|
|
112
|
-
pyautogen[openai-realtime]==0.8.4
|
|
113
|
-
|
|
114
|
-
[rag]
|
|
115
|
-
pyautogen[rag]==0.8.4
|
|
116
|
-
|
|
117
|
-
[redis]
|
|
118
|
-
pyautogen[redis]==0.8.4
|
|
119
|
-
|
|
120
|
-
[retrievechat]
|
|
121
|
-
pyautogen[retrievechat]==0.8.4
|
|
122
|
-
|
|
123
|
-
[retrievechat-couchbase]
|
|
124
|
-
pyautogen[retrievechat-couchbase]==0.8.4
|
|
125
|
-
|
|
126
|
-
[retrievechat-mongodb]
|
|
127
|
-
pyautogen[retrievechat-mongodb]==0.8.4
|
|
128
|
-
|
|
129
|
-
[retrievechat-pgvector]
|
|
130
|
-
pyautogen[retrievechat-pgvector]==0.8.4
|
|
131
|
-
|
|
132
|
-
[retrievechat-qdrant]
|
|
133
|
-
pyautogen[retrievechat-qdrant]==0.8.4
|
|
134
|
-
|
|
135
|
-
[teachable]
|
|
136
|
-
pyautogen[teachable]==0.8.4
|
|
137
|
-
|
|
138
|
-
[test]
|
|
139
|
-
pyautogen[test]==0.8.4
|
|
140
|
-
|
|
141
|
-
[together]
|
|
142
|
-
pyautogen[together]==0.8.4
|
|
143
|
-
|
|
144
|
-
[twilio]
|
|
145
|
-
pyautogen[twilio]==0.8.4
|
|
146
|
-
|
|
147
|
-
[types]
|
|
148
|
-
pyautogen[types]==0.8.4
|
|
149
|
-
|
|
150
|
-
[websockets]
|
|
151
|
-
pyautogen[websockets]==0.8.4
|
|
152
|
-
|
|
153
|
-
[websurfer]
|
|
154
|
-
pyautogen[websurfer]==0.8.4
|
|
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
|