ag2 0.8.8a1__tar.gz → 0.9a0__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.8a1/ag2.egg-info → ag2-0.9a0}/PKG-INFO +6 -6
- {ag2-0.8.8a1 → ag2-0.9a0}/README.md +5 -5
- {ag2-0.8.8a1 → ag2-0.9a0/ag2.egg-info}/PKG-INFO +6 -6
- ag2-0.9a0/ag2.egg-info/requires.txt +169 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/pyproject.toml +7 -13
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_browser_utils.py +1 -1
- ag2-0.8.8a1/ag2.egg-info/requires.txt +0 -169
- {ag2-0.8.8a1 → ag2-0.9a0}/LICENSE +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/NOTICE.md +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/ag2.egg-info/SOURCES.txt +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/ag2.egg-info/dependency_links.txt +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/ag2.egg-info/top_level.txt +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/setup.cfg +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/setup_ag2.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_code_utils.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_conftest.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_graph_utils.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_import.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_import_utils.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_json_utils.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_llm_config.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_logging.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_notebook.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_retrieve_utils.py +0 -0
- {ag2-0.8.8a1 → ag2-0.9a0}/test/test_token_count.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ag2
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9a0
|
|
4
4
|
Summary: Alias package for pyautogen
|
|
5
5
|
Home-page: https://github.com/ag2ai/ag2
|
|
6
6
|
Author: Chi Wang & Qingyun Wu
|
|
@@ -95,7 +95,7 @@ License-File: NOTICE.md
|
|
|
95
95
|
<p align="center">
|
|
96
96
|
<a href="https://docs.ag2.ai/">📚 Documentation</a> |
|
|
97
97
|
<a href="https://github.com/ag2ai/build-with-ag2">💡 Examples</a> |
|
|
98
|
-
<a href="https://docs.ag2.ai/docs/contributor-guide/contributing">🤝 Contributing</a> |
|
|
98
|
+
<a href="https://docs.ag2.ai/latest/docs/contributor-guide/contributing">🤝 Contributing</a> |
|
|
99
99
|
<a href="#related-papers">📝 Cite paper</a> |
|
|
100
100
|
<a href="https://discord.gg/pAbnFJrkgZ">💬 Join Discord</a>
|
|
101
101
|
</p>
|
|
@@ -422,11 +422,11 @@ print(chat_result.chat_history[-1]["content"])
|
|
|
422
422
|
|
|
423
423
|
AG2 supports more advanced concepts to help you build your AI agent workflows. You can find more information in the documentation.
|
|
424
424
|
|
|
425
|
-
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/
|
|
426
|
-
- [Ending a conversation](https://docs.ag2.ai/latest/docs/user-guide/
|
|
425
|
+
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/structured-outputs)
|
|
426
|
+
- [Ending a conversation](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/orchestration/ending-a-chat/)
|
|
427
427
|
- [Retrieval Augmented Generation (RAG)](https://docs.ag2.ai/docs/user-guide/advanced-concepts/rag)
|
|
428
|
-
- [Code Execution](https://docs.ag2.ai/docs/user-guide/advanced-concepts/code-execution)
|
|
429
|
-
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/basic-concepts/tools/tools-with-secrets)
|
|
428
|
+
- [Code Execution](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/code-execution)
|
|
429
|
+
- [Tools with Secrets](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/introducing-tools/tools-with-secrets)
|
|
430
430
|
|
|
431
431
|
## Announcements
|
|
432
432
|
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<p align="center">
|
|
23
23
|
<a href="https://docs.ag2.ai/">📚 Documentation</a> |
|
|
24
24
|
<a href="https://github.com/ag2ai/build-with-ag2">💡 Examples</a> |
|
|
25
|
-
<a href="https://docs.ag2.ai/docs/contributor-guide/contributing">🤝 Contributing</a> |
|
|
25
|
+
<a href="https://docs.ag2.ai/latest/docs/contributor-guide/contributing">🤝 Contributing</a> |
|
|
26
26
|
<a href="#related-papers">📝 Cite paper</a> |
|
|
27
27
|
<a href="https://discord.gg/pAbnFJrkgZ">💬 Join Discord</a>
|
|
28
28
|
</p>
|
|
@@ -349,11 +349,11 @@ print(chat_result.chat_history[-1]["content"])
|
|
|
349
349
|
|
|
350
350
|
AG2 supports more advanced concepts to help you build your AI agent workflows. You can find more information in the documentation.
|
|
351
351
|
|
|
352
|
-
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/
|
|
353
|
-
- [Ending a conversation](https://docs.ag2.ai/latest/docs/user-guide/
|
|
352
|
+
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/structured-outputs)
|
|
353
|
+
- [Ending a conversation](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/orchestration/ending-a-chat/)
|
|
354
354
|
- [Retrieval Augmented Generation (RAG)](https://docs.ag2.ai/docs/user-guide/advanced-concepts/rag)
|
|
355
|
-
- [Code Execution](https://docs.ag2.ai/docs/user-guide/advanced-concepts/code-execution)
|
|
356
|
-
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/basic-concepts/tools/tools-with-secrets)
|
|
355
|
+
- [Code Execution](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/code-execution)
|
|
356
|
+
- [Tools with Secrets](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/introducing-tools/tools-with-secrets)
|
|
357
357
|
|
|
358
358
|
## Announcements
|
|
359
359
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ag2
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9a0
|
|
4
4
|
Summary: Alias package for pyautogen
|
|
5
5
|
Home-page: https://github.com/ag2ai/ag2
|
|
6
6
|
Author: Chi Wang & Qingyun Wu
|
|
@@ -95,7 +95,7 @@ License-File: NOTICE.md
|
|
|
95
95
|
<p align="center">
|
|
96
96
|
<a href="https://docs.ag2.ai/">📚 Documentation</a> |
|
|
97
97
|
<a href="https://github.com/ag2ai/build-with-ag2">💡 Examples</a> |
|
|
98
|
-
<a href="https://docs.ag2.ai/docs/contributor-guide/contributing">🤝 Contributing</a> |
|
|
98
|
+
<a href="https://docs.ag2.ai/latest/docs/contributor-guide/contributing">🤝 Contributing</a> |
|
|
99
99
|
<a href="#related-papers">📝 Cite paper</a> |
|
|
100
100
|
<a href="https://discord.gg/pAbnFJrkgZ">💬 Join Discord</a>
|
|
101
101
|
</p>
|
|
@@ -422,11 +422,11 @@ print(chat_result.chat_history[-1]["content"])
|
|
|
422
422
|
|
|
423
423
|
AG2 supports more advanced concepts to help you build your AI agent workflows. You can find more information in the documentation.
|
|
424
424
|
|
|
425
|
-
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/
|
|
426
|
-
- [Ending a conversation](https://docs.ag2.ai/latest/docs/user-guide/
|
|
425
|
+
- [Structured Output](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/structured-outputs)
|
|
426
|
+
- [Ending a conversation](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/orchestration/ending-a-chat/)
|
|
427
427
|
- [Retrieval Augmented Generation (RAG)](https://docs.ag2.ai/docs/user-guide/advanced-concepts/rag)
|
|
428
|
-
- [Code Execution](https://docs.ag2.ai/docs/user-guide/advanced-concepts/code-execution)
|
|
429
|
-
- [Tools with Secrets](https://docs.ag2.ai/docs/user-guide/basic-concepts/tools/tools-with-secrets)
|
|
428
|
+
- [Code Execution](https://docs.ag2.ai/latest/docs/user-guide/advanced-concepts/code-execution)
|
|
429
|
+
- [Tools with Secrets](https://docs.ag2.ai/latest/docs/user-guide/basic-concepts/introducing-tools/tools-with-secrets)
|
|
430
430
|
|
|
431
431
|
## Announcements
|
|
432
432
|
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
pyautogen==0.9alpha0
|
|
2
|
+
|
|
3
|
+
[anthropic]
|
|
4
|
+
pyautogen[anthropic]==0.9alpha0
|
|
5
|
+
|
|
6
|
+
[autobuild]
|
|
7
|
+
pyautogen[autobuild]==0.9alpha0
|
|
8
|
+
|
|
9
|
+
[bedrock]
|
|
10
|
+
pyautogen[bedrock]==0.9alpha0
|
|
11
|
+
|
|
12
|
+
[blendsearch]
|
|
13
|
+
pyautogen[blendsearch]==0.9alpha0
|
|
14
|
+
|
|
15
|
+
[browser-use]
|
|
16
|
+
pyautogen[browser-use]==0.9alpha0
|
|
17
|
+
|
|
18
|
+
[captainagent]
|
|
19
|
+
pyautogen[captainagent]==0.9alpha0
|
|
20
|
+
|
|
21
|
+
[cerebras]
|
|
22
|
+
pyautogen[cerebras]==0.9alpha0
|
|
23
|
+
|
|
24
|
+
[cohere]
|
|
25
|
+
pyautogen[cohere]==0.9alpha0
|
|
26
|
+
|
|
27
|
+
[commsagent-discord]
|
|
28
|
+
pyautogen[commsagent-discord]==0.9alpha0
|
|
29
|
+
|
|
30
|
+
[commsagent-slack]
|
|
31
|
+
pyautogen[commsagent-slack]==0.9alpha0
|
|
32
|
+
|
|
33
|
+
[commsagent-telegram]
|
|
34
|
+
pyautogen[commsagent-telegram]==0.9alpha0
|
|
35
|
+
|
|
36
|
+
[cosmosdb]
|
|
37
|
+
pyautogen[cosmosdb]==0.9alpha0
|
|
38
|
+
|
|
39
|
+
[crawl4ai]
|
|
40
|
+
pyautogen[crawl4ai]==0.9alpha0
|
|
41
|
+
|
|
42
|
+
[deepseek]
|
|
43
|
+
pyautogen[deepseek]==0.9alpha0
|
|
44
|
+
|
|
45
|
+
[dev]
|
|
46
|
+
pyautogen[dev]==0.9alpha0
|
|
47
|
+
|
|
48
|
+
[docs]
|
|
49
|
+
pyautogen[docs]==0.9alpha0
|
|
50
|
+
|
|
51
|
+
[flaml]
|
|
52
|
+
pyautogen[flaml]==0.9alpha0
|
|
53
|
+
|
|
54
|
+
[gemini]
|
|
55
|
+
pyautogen[gemini]==0.9alpha0
|
|
56
|
+
|
|
57
|
+
[gemini-realtime]
|
|
58
|
+
pyautogen[gemini-realtime]==0.9alpha0
|
|
59
|
+
|
|
60
|
+
[google-api]
|
|
61
|
+
pyautogen[google-api]==0.9alpha0
|
|
62
|
+
|
|
63
|
+
[google-client]
|
|
64
|
+
pyautogen[google-client]==0.9alpha0
|
|
65
|
+
|
|
66
|
+
[google-search]
|
|
67
|
+
pyautogen[google-search]==0.9alpha0
|
|
68
|
+
|
|
69
|
+
[graph]
|
|
70
|
+
pyautogen[graph]==0.9alpha0
|
|
71
|
+
|
|
72
|
+
[graph-rag-falkor-db]
|
|
73
|
+
pyautogen[graph-rag-falkor-db]==0.9alpha0
|
|
74
|
+
|
|
75
|
+
[groq]
|
|
76
|
+
pyautogen[groq]==0.9alpha0
|
|
77
|
+
|
|
78
|
+
[interop]
|
|
79
|
+
pyautogen[interop]==0.9alpha0
|
|
80
|
+
|
|
81
|
+
[interop-crewai]
|
|
82
|
+
pyautogen[interop-crewai]==0.9alpha0
|
|
83
|
+
|
|
84
|
+
[interop-langchain]
|
|
85
|
+
pyautogen[interop-langchain]==0.9alpha0
|
|
86
|
+
|
|
87
|
+
[interop-pydantic-ai]
|
|
88
|
+
pyautogen[interop-pydantic-ai]==0.9alpha0
|
|
89
|
+
|
|
90
|
+
[jupyter-executor]
|
|
91
|
+
pyautogen[jupyter-executor]==0.9alpha0
|
|
92
|
+
|
|
93
|
+
[lint]
|
|
94
|
+
pyautogen[lint]==0.9alpha0
|
|
95
|
+
|
|
96
|
+
[lmm]
|
|
97
|
+
pyautogen[lmm]==0.9alpha0
|
|
98
|
+
|
|
99
|
+
[long-context]
|
|
100
|
+
pyautogen[long-context]==0.9alpha0
|
|
101
|
+
|
|
102
|
+
[mathchat]
|
|
103
|
+
pyautogen[mathchat]==0.9alpha0
|
|
104
|
+
|
|
105
|
+
[mcp]
|
|
106
|
+
pyautogen[mcp]==0.9alpha0
|
|
107
|
+
|
|
108
|
+
[mcp-proxy-gen]
|
|
109
|
+
pyautogen[mcp-proxy-gen]==0.9alpha0
|
|
110
|
+
|
|
111
|
+
[mistral]
|
|
112
|
+
pyautogen[mistral]==0.9alpha0
|
|
113
|
+
|
|
114
|
+
[neo4j]
|
|
115
|
+
pyautogen[neo4j]==0.9alpha0
|
|
116
|
+
|
|
117
|
+
[ollama]
|
|
118
|
+
pyautogen[ollama]==0.9alpha0
|
|
119
|
+
|
|
120
|
+
[openai]
|
|
121
|
+
pyautogen[openai]==0.9alpha0
|
|
122
|
+
|
|
123
|
+
[openai-realtime]
|
|
124
|
+
pyautogen[openai-realtime]==0.9alpha0
|
|
125
|
+
|
|
126
|
+
[rag]
|
|
127
|
+
pyautogen[rag]==0.9alpha0
|
|
128
|
+
|
|
129
|
+
[redis]
|
|
130
|
+
pyautogen[redis]==0.9alpha0
|
|
131
|
+
|
|
132
|
+
[retrievechat]
|
|
133
|
+
pyautogen[retrievechat]==0.9alpha0
|
|
134
|
+
|
|
135
|
+
[retrievechat-couchbase]
|
|
136
|
+
pyautogen[retrievechat-couchbase]==0.9alpha0
|
|
137
|
+
|
|
138
|
+
[retrievechat-mongodb]
|
|
139
|
+
pyautogen[retrievechat-mongodb]==0.9alpha0
|
|
140
|
+
|
|
141
|
+
[retrievechat-pgvector]
|
|
142
|
+
pyautogen[retrievechat-pgvector]==0.9alpha0
|
|
143
|
+
|
|
144
|
+
[retrievechat-qdrant]
|
|
145
|
+
pyautogen[retrievechat-qdrant]==0.9alpha0
|
|
146
|
+
|
|
147
|
+
[teachable]
|
|
148
|
+
pyautogen[teachable]==0.9alpha0
|
|
149
|
+
|
|
150
|
+
[test]
|
|
151
|
+
pyautogen[test]==0.9alpha0
|
|
152
|
+
|
|
153
|
+
[together]
|
|
154
|
+
pyautogen[together]==0.9alpha0
|
|
155
|
+
|
|
156
|
+
[twilio]
|
|
157
|
+
pyautogen[twilio]==0.9alpha0
|
|
158
|
+
|
|
159
|
+
[types]
|
|
160
|
+
pyautogen[types]==0.9alpha0
|
|
161
|
+
|
|
162
|
+
[websockets]
|
|
163
|
+
pyautogen[websockets]==0.9alpha0
|
|
164
|
+
|
|
165
|
+
[websurfer]
|
|
166
|
+
pyautogen[websurfer]==0.9alpha0
|
|
167
|
+
|
|
168
|
+
[wikipedia]
|
|
169
|
+
pyautogen[wikipedia]==0.9alpha0
|
|
@@ -96,10 +96,7 @@ jupyter-executor = [
|
|
|
96
96
|
retrievechat = [
|
|
97
97
|
"protobuf==5.29.3",
|
|
98
98
|
"chromadb==0.6.3",
|
|
99
|
-
|
|
100
|
-
"sentence_transformers<=4.0.2",
|
|
101
|
-
# transformers version 4.51.0 is not integrated with sentence_transformers and throws error
|
|
102
|
-
"transformers<4.51.0",
|
|
99
|
+
"sentence_transformers<=4.1.0",
|
|
103
100
|
"pypdf",
|
|
104
101
|
"ipython",
|
|
105
102
|
"beautifulsoup4",
|
|
@@ -144,7 +141,7 @@ rag = [
|
|
|
144
141
|
"llama-index>=0.12,<1",
|
|
145
142
|
"llama-index-vector-stores-chroma==0.4.1",
|
|
146
143
|
"llama-index-vector-stores-mongodb==0.6.0",
|
|
147
|
-
"llama-index-embeddings-huggingface==0.5.
|
|
144
|
+
"llama-index-embeddings-huggingface==0.5.3",
|
|
148
145
|
"llama-index-llms-langchain==0.6.1",
|
|
149
146
|
"requests>=2.32.3,<3",
|
|
150
147
|
]
|
|
@@ -217,10 +214,7 @@ interop =[
|
|
|
217
214
|
|
|
218
215
|
autobuild = [
|
|
219
216
|
"chromadb",
|
|
220
|
-
|
|
221
|
-
"sentence_transformers<=4.0.2",
|
|
222
|
-
# transformers version 4.51.0 is not integrated with sentence_transformers and throws error
|
|
223
|
-
"transformers<4.51.0",
|
|
217
|
+
"sentence_transformers<=4.1.0",
|
|
224
218
|
"huggingface-hub"
|
|
225
219
|
]
|
|
226
220
|
|
|
@@ -280,7 +274,7 @@ test = [
|
|
|
280
274
|
]
|
|
281
275
|
|
|
282
276
|
docs = [
|
|
283
|
-
"mkdocs-material==9.6.
|
|
277
|
+
"mkdocs-material==9.6.12",
|
|
284
278
|
"mkdocstrings[python]==0.29.1",
|
|
285
279
|
"mkdocs-literate-nav==0.6.2",
|
|
286
280
|
"mdx-include==1.4.2",
|
|
@@ -307,7 +301,7 @@ types = [
|
|
|
307
301
|
]
|
|
308
302
|
|
|
309
303
|
lint = [
|
|
310
|
-
"ruff==0.11.
|
|
304
|
+
"ruff==0.11.6",
|
|
311
305
|
"codespell==2.4.1",
|
|
312
306
|
"pyupgrade-directories==0.3.0",
|
|
313
307
|
]
|
|
@@ -328,8 +322,6 @@ Tracker = "https://github.com/ag2ai/ag2/issues"
|
|
|
328
322
|
Source = "https://github.com/ag2ai/ag2"
|
|
329
323
|
Discord = "https://discord.gg/pAbnFJrkgZ"
|
|
330
324
|
|
|
331
|
-
[project.scripts]
|
|
332
|
-
mcp_proxy = "autogen.mcp.__main__:app"
|
|
333
325
|
|
|
334
326
|
[tool.hatch.version]
|
|
335
327
|
path = "autogen/version.py"
|
|
@@ -487,6 +479,7 @@ files = [
|
|
|
487
479
|
"autogen/agentchat/contrib/rag",
|
|
488
480
|
"autogen/agentchat/contrib/graph_rag",
|
|
489
481
|
"autogen/agentchat/contrib/swarm_agent.py",
|
|
482
|
+
"autogen/agentchat/group",
|
|
490
483
|
"autogen/agentchat/realtime_agent",
|
|
491
484
|
"autogen/agentchat/utils.py",
|
|
492
485
|
"autogen/agents",
|
|
@@ -509,6 +502,7 @@ files = [
|
|
|
509
502
|
"test/agentchat/contrib/rag",
|
|
510
503
|
"test/agentchat/contrib/graph_rag",
|
|
511
504
|
"test/agentchat/contrib/test_swarm.py",
|
|
505
|
+
"test/agentchat/group",
|
|
512
506
|
"test/agentchat/realtime_agent",
|
|
513
507
|
"test/agents",
|
|
514
508
|
"test/conftest.py",
|
|
@@ -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/04/21/LLM-tuning-math/"
|
|
21
|
+
BLOG_POST_URL = "https://docs.ag2.ai/latest/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,169 +0,0 @@
|
|
|
1
|
-
pyautogen==0.8.8alpha1
|
|
2
|
-
|
|
3
|
-
[anthropic]
|
|
4
|
-
pyautogen[anthropic]==0.8.8alpha1
|
|
5
|
-
|
|
6
|
-
[autobuild]
|
|
7
|
-
pyautogen[autobuild]==0.8.8alpha1
|
|
8
|
-
|
|
9
|
-
[bedrock]
|
|
10
|
-
pyautogen[bedrock]==0.8.8alpha1
|
|
11
|
-
|
|
12
|
-
[blendsearch]
|
|
13
|
-
pyautogen[blendsearch]==0.8.8alpha1
|
|
14
|
-
|
|
15
|
-
[browser-use]
|
|
16
|
-
pyautogen[browser-use]==0.8.8alpha1
|
|
17
|
-
|
|
18
|
-
[captainagent]
|
|
19
|
-
pyautogen[captainagent]==0.8.8alpha1
|
|
20
|
-
|
|
21
|
-
[cerebras]
|
|
22
|
-
pyautogen[cerebras]==0.8.8alpha1
|
|
23
|
-
|
|
24
|
-
[cohere]
|
|
25
|
-
pyautogen[cohere]==0.8.8alpha1
|
|
26
|
-
|
|
27
|
-
[commsagent-discord]
|
|
28
|
-
pyautogen[commsagent-discord]==0.8.8alpha1
|
|
29
|
-
|
|
30
|
-
[commsagent-slack]
|
|
31
|
-
pyautogen[commsagent-slack]==0.8.8alpha1
|
|
32
|
-
|
|
33
|
-
[commsagent-telegram]
|
|
34
|
-
pyautogen[commsagent-telegram]==0.8.8alpha1
|
|
35
|
-
|
|
36
|
-
[cosmosdb]
|
|
37
|
-
pyautogen[cosmosdb]==0.8.8alpha1
|
|
38
|
-
|
|
39
|
-
[crawl4ai]
|
|
40
|
-
pyautogen[crawl4ai]==0.8.8alpha1
|
|
41
|
-
|
|
42
|
-
[deepseek]
|
|
43
|
-
pyautogen[deepseek]==0.8.8alpha1
|
|
44
|
-
|
|
45
|
-
[dev]
|
|
46
|
-
pyautogen[dev]==0.8.8alpha1
|
|
47
|
-
|
|
48
|
-
[docs]
|
|
49
|
-
pyautogen[docs]==0.8.8alpha1
|
|
50
|
-
|
|
51
|
-
[flaml]
|
|
52
|
-
pyautogen[flaml]==0.8.8alpha1
|
|
53
|
-
|
|
54
|
-
[gemini]
|
|
55
|
-
pyautogen[gemini]==0.8.8alpha1
|
|
56
|
-
|
|
57
|
-
[gemini-realtime]
|
|
58
|
-
pyautogen[gemini-realtime]==0.8.8alpha1
|
|
59
|
-
|
|
60
|
-
[google-api]
|
|
61
|
-
pyautogen[google-api]==0.8.8alpha1
|
|
62
|
-
|
|
63
|
-
[google-client]
|
|
64
|
-
pyautogen[google-client]==0.8.8alpha1
|
|
65
|
-
|
|
66
|
-
[google-search]
|
|
67
|
-
pyautogen[google-search]==0.8.8alpha1
|
|
68
|
-
|
|
69
|
-
[graph]
|
|
70
|
-
pyautogen[graph]==0.8.8alpha1
|
|
71
|
-
|
|
72
|
-
[graph-rag-falkor-db]
|
|
73
|
-
pyautogen[graph-rag-falkor-db]==0.8.8alpha1
|
|
74
|
-
|
|
75
|
-
[groq]
|
|
76
|
-
pyautogen[groq]==0.8.8alpha1
|
|
77
|
-
|
|
78
|
-
[interop]
|
|
79
|
-
pyautogen[interop]==0.8.8alpha1
|
|
80
|
-
|
|
81
|
-
[interop-crewai]
|
|
82
|
-
pyautogen[interop-crewai]==0.8.8alpha1
|
|
83
|
-
|
|
84
|
-
[interop-langchain]
|
|
85
|
-
pyautogen[interop-langchain]==0.8.8alpha1
|
|
86
|
-
|
|
87
|
-
[interop-pydantic-ai]
|
|
88
|
-
pyautogen[interop-pydantic-ai]==0.8.8alpha1
|
|
89
|
-
|
|
90
|
-
[jupyter-executor]
|
|
91
|
-
pyautogen[jupyter-executor]==0.8.8alpha1
|
|
92
|
-
|
|
93
|
-
[lint]
|
|
94
|
-
pyautogen[lint]==0.8.8alpha1
|
|
95
|
-
|
|
96
|
-
[lmm]
|
|
97
|
-
pyautogen[lmm]==0.8.8alpha1
|
|
98
|
-
|
|
99
|
-
[long-context]
|
|
100
|
-
pyautogen[long-context]==0.8.8alpha1
|
|
101
|
-
|
|
102
|
-
[mathchat]
|
|
103
|
-
pyautogen[mathchat]==0.8.8alpha1
|
|
104
|
-
|
|
105
|
-
[mcp]
|
|
106
|
-
pyautogen[mcp]==0.8.8alpha1
|
|
107
|
-
|
|
108
|
-
[mcp-proxy-gen]
|
|
109
|
-
pyautogen[mcp-proxy-gen]==0.8.8alpha1
|
|
110
|
-
|
|
111
|
-
[mistral]
|
|
112
|
-
pyautogen[mistral]==0.8.8alpha1
|
|
113
|
-
|
|
114
|
-
[neo4j]
|
|
115
|
-
pyautogen[neo4j]==0.8.8alpha1
|
|
116
|
-
|
|
117
|
-
[ollama]
|
|
118
|
-
pyautogen[ollama]==0.8.8alpha1
|
|
119
|
-
|
|
120
|
-
[openai]
|
|
121
|
-
pyautogen[openai]==0.8.8alpha1
|
|
122
|
-
|
|
123
|
-
[openai-realtime]
|
|
124
|
-
pyautogen[openai-realtime]==0.8.8alpha1
|
|
125
|
-
|
|
126
|
-
[rag]
|
|
127
|
-
pyautogen[rag]==0.8.8alpha1
|
|
128
|
-
|
|
129
|
-
[redis]
|
|
130
|
-
pyautogen[redis]==0.8.8alpha1
|
|
131
|
-
|
|
132
|
-
[retrievechat]
|
|
133
|
-
pyautogen[retrievechat]==0.8.8alpha1
|
|
134
|
-
|
|
135
|
-
[retrievechat-couchbase]
|
|
136
|
-
pyautogen[retrievechat-couchbase]==0.8.8alpha1
|
|
137
|
-
|
|
138
|
-
[retrievechat-mongodb]
|
|
139
|
-
pyautogen[retrievechat-mongodb]==0.8.8alpha1
|
|
140
|
-
|
|
141
|
-
[retrievechat-pgvector]
|
|
142
|
-
pyautogen[retrievechat-pgvector]==0.8.8alpha1
|
|
143
|
-
|
|
144
|
-
[retrievechat-qdrant]
|
|
145
|
-
pyautogen[retrievechat-qdrant]==0.8.8alpha1
|
|
146
|
-
|
|
147
|
-
[teachable]
|
|
148
|
-
pyautogen[teachable]==0.8.8alpha1
|
|
149
|
-
|
|
150
|
-
[test]
|
|
151
|
-
pyautogen[test]==0.8.8alpha1
|
|
152
|
-
|
|
153
|
-
[together]
|
|
154
|
-
pyautogen[together]==0.8.8alpha1
|
|
155
|
-
|
|
156
|
-
[twilio]
|
|
157
|
-
pyautogen[twilio]==0.8.8alpha1
|
|
158
|
-
|
|
159
|
-
[types]
|
|
160
|
-
pyautogen[types]==0.8.8alpha1
|
|
161
|
-
|
|
162
|
-
[websockets]
|
|
163
|
-
pyautogen[websockets]==0.8.8alpha1
|
|
164
|
-
|
|
165
|
-
[websurfer]
|
|
166
|
-
pyautogen[websurfer]==0.8.8alpha1
|
|
167
|
-
|
|
168
|
-
[wikipedia]
|
|
169
|
-
pyautogen[wikipedia]==0.8.8alpha1
|
|
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
|