waldiez 0.3.11__tar.gz → 0.3.12__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 waldiez might be problematic. Click here for more details.

Files changed (146) hide show
  1. {waldiez-0.3.11 → waldiez-0.3.12}/PKG-INFO +27 -18
  2. {waldiez-0.3.11 → waldiez-0.3.12}/pyproject.toml +32 -45
  3. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/_version.py +1 -1
  4. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/agent_exporter.py +22 -15
  5. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/__init__.py +2 -4
  6. waldiez-0.3.12/waldiez/exporting/agent/utils/captain_agent.py +254 -0
  7. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/flow_exporter.py +3 -6
  8. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/utils/def_main.py +5 -4
  9. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/__init__.py +6 -0
  10. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/__init__.py +14 -0
  11. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agent/agent.py +71 -8
  12. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agents.py +11 -1
  13. waldiez-0.3.12/waldiez/models/agents/captain_agent/__init__.py +15 -0
  14. waldiez-0.3.12/waldiez/models/agents/captain_agent/captain_agent.py +45 -0
  15. waldiez-0.3.12/waldiez/models/agents/captain_agent/captain_agent_data.py +62 -0
  16. waldiez-0.3.12/waldiez/models/agents/captain_agent/captain_agent_lib_entry.py +38 -0
  17. waldiez-0.3.12/waldiez/models/agents/extra_requirements.py +88 -0
  18. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/common/__init__.py +2 -0
  19. waldiez-0.3.12/waldiez/models/common/ag2_version.py +30 -0
  20. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/common/base.py +1 -1
  21. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/common/date_utils.py +2 -0
  22. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/common/dict_utils.py +2 -0
  23. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/flow/__init__.py +2 -0
  24. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/flow/utils.py +61 -1
  25. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/model/__init__.py +2 -0
  26. waldiez-0.3.12/waldiez/models/model/extra_requirements.py +55 -0
  27. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/model/model.py +5 -2
  28. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/model/model_data.py +2 -1
  29. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/waldiez.py +16 -75
  30. waldiez-0.3.11/waldiez/exporting/agent/utils/agent_class_name.py +0 -36
  31. waldiez-0.3.11/waldiez/exporting/agent/utils/agent_imports.py +0 -55
  32. {waldiez-0.3.11 → waldiez-0.3.12}/.gitignore +0 -0
  33. {waldiez-0.3.11 → waldiez-0.3.12}/LICENSE +0 -0
  34. {waldiez-0.3.11 → waldiez-0.3.12}/NOTICE.md +0 -0
  35. {waldiez-0.3.11 → waldiez-0.3.12}/README.md +0 -0
  36. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/__init__.py +0 -0
  37. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/__main__.py +0 -0
  38. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/cli.py +0 -0
  39. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporter.py +0 -0
  40. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/__init__.py +0 -0
  41. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/__init__.py +0 -0
  42. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/code_execution.py +0 -0
  43. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/group_manager.py +0 -0
  44. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/rag_user/__init__.py +0 -0
  45. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/rag_user/chroma_utils.py +0 -0
  46. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/rag_user/mongo_utils.py +0 -0
  47. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/rag_user/pgvector_utils.py +0 -0
  48. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/rag_user/qdrant_utils.py +0 -0
  49. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/rag_user/rag_user.py +0 -0
  50. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/rag_user/vector_db.py +0 -0
  51. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/reasoning.py +0 -0
  52. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/swarm_agent.py +0 -0
  53. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/teachability.py +0 -0
  54. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/agent/utils/termination_message.py +0 -0
  55. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/__init__.py +0 -0
  56. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/agent_position.py +0 -0
  57. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/base_exporter.py +0 -0
  58. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/export_position.py +0 -0
  59. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/import_position.py +0 -0
  60. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/mixin.py +0 -0
  61. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/utils/__init__.py +0 -0
  62. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/utils/comments.py +0 -0
  63. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/utils/naming.py +0 -0
  64. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/utils/path_check.py +0 -0
  65. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/base/utils/to_string.py +0 -0
  66. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/chats/__init__.py +0 -0
  67. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/chats/chats_exporter.py +0 -0
  68. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/chats/utils/__init__.py +0 -0
  69. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/chats/utils/common.py +0 -0
  70. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/chats/utils/nested.py +0 -0
  71. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/chats/utils/sequential.py +0 -0
  72. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/chats/utils/single_chat.py +0 -0
  73. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/chats/utils/swarm.py +0 -0
  74. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/__init__.py +0 -0
  75. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/utils/__init__.py +0 -0
  76. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/utils/agent_utils.py +0 -0
  77. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/utils/chat_utils.py +0 -0
  78. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/utils/flow_content.py +0 -0
  79. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/utils/flow_names.py +0 -0
  80. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/utils/importing_utils.py +0 -0
  81. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/flow/utils/logging_utils.py +0 -0
  82. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/models/__init__.py +0 -0
  83. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/models/models_exporter.py +0 -0
  84. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/models/utils.py +0 -0
  85. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/skills/__init__.py +0 -0
  86. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/skills/skills_exporter.py +0 -0
  87. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/exporting/skills/utils.py +0 -0
  88. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agent/__init__.py +0 -0
  89. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agent/agent_data.py +0 -0
  90. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agent/code_execution.py +0 -0
  91. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agent/linked_skill.py +0 -0
  92. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agent/nested_chat.py +0 -0
  93. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agent/teachability.py +0 -0
  94. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/agent/termination_message.py +0 -0
  95. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/assistant/__init__.py +0 -0
  96. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/assistant/assistant.py +0 -0
  97. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/assistant/assistant_data.py +0 -0
  98. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/group_manager/__init__.py +0 -0
  99. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/group_manager/group_manager.py +0 -0
  100. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/group_manager/group_manager_data.py +0 -0
  101. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/group_manager/speakers.py +0 -0
  102. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/rag_user/__init__.py +0 -0
  103. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/rag_user/rag_user.py +0 -0
  104. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/rag_user/rag_user_data.py +0 -0
  105. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/rag_user/retrieve_config.py +0 -0
  106. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/rag_user/vector_db_config.py +0 -0
  107. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/reasoning/__init__.py +0 -0
  108. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/reasoning/reasoning_agent.py +0 -0
  109. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/reasoning/reasoning_agent_data.py +0 -0
  110. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py +0 -0
  111. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/swarm_agent/__init__.py +0 -0
  112. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/swarm_agent/after_work.py +0 -0
  113. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/swarm_agent/on_condition.py +0 -0
  114. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/swarm_agent/on_condition_available.py +0 -0
  115. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/swarm_agent/on_condition_target.py +0 -0
  116. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/swarm_agent/swarm_agent.py +0 -0
  117. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/swarm_agent/swarm_agent_data.py +0 -0
  118. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/swarm_agent/update_system_message.py +0 -0
  119. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/user_proxy/__init__.py +0 -0
  120. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/user_proxy/user_proxy.py +0 -0
  121. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/agents/user_proxy/user_proxy_data.py +0 -0
  122. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/chat/__init__.py +0 -0
  123. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/chat/chat.py +0 -0
  124. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/chat/chat_data.py +0 -0
  125. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/chat/chat_message.py +0 -0
  126. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/chat/chat_nested.py +0 -0
  127. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/chat/chat_summary.py +0 -0
  128. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/common/method_utils.py +0 -0
  129. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/flow/flow.py +0 -0
  130. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/flow/flow_data.py +0 -0
  131. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/skill/__init__.py +0 -0
  132. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/skill/skill.py +0 -0
  133. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/models/skill/skill_data.py +0 -0
  134. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/py.typed +0 -0
  135. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/runner.py +0 -0
  136. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/running/__init__.py +0 -0
  137. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/running/environment.py +0 -0
  138. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/running/gen_seq_diagram.py +0 -0
  139. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/running/running.py +0 -0
  140. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/utils/__init__.py +0 -0
  141. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/utils/cli_extras/__init__.py +0 -0
  142. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/utils/cli_extras/jupyter.py +0 -0
  143. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/utils/cli_extras/studio.py +0 -0
  144. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/utils/conflict_checker.py +0 -0
  145. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/utils/flaml_warnings.py +0 -0
  146. {waldiez-0.3.11 → waldiez-0.3.12}/waldiez/utils/pysqlite3_checker.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: waldiez
3
- Version: 0.3.11
3
+ Version: 0.3.12
4
4
  Summary: waldiez
5
5
  Project-URL: homepage, https://waldiez.github.io/waldiez/python
6
6
  Project-URL: repository, https://github.com/waldiez/python.git
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.12
20
20
  Requires-Python: <3.13,>=3.10
21
21
  Requires-Dist: aiocsv==1.3.2
22
22
  Requires-Dist: aiofiles==24.1.0
23
- Requires-Dist: aiosqlite==0.20.0
23
+ Requires-Dist: aiosqlite==0.21.0
24
24
  Requires-Dist: asyncer==0.0.8
25
25
  Requires-Dist: graphviz==0.20.3
26
26
  Requires-Dist: httpx<1
@@ -31,27 +31,36 @@ Requires-Dist: pyautogen==0.7.3
31
31
  Requires-Dist: pydantic<3,>=2.6.1
32
32
  Requires-Dist: typer<0.16,>=0.9
33
33
  Provides-Extra: ag2-extras
34
- Requires-Dist: autogen[captainagent]==0.7.3; (platform_system == 'Linux') and extra == 'ag2-extras'
35
- Requires-Dist: chromadb; (platform_system != 'Linux') and extra == 'ag2-extras'
36
- Requires-Dist: huggingface-hub; (platform_system != 'Linux') and extra == 'ag2-extras'
34
+ Requires-Dist: beautifulsoup4; extra == 'ag2-extras'
35
+ Requires-Dist: chromadb>=0.5.23; extra == 'ag2-extras'
36
+ Requires-Dist: crewai-tools==0.33.0; extra == 'ag2-extras'
37
+ Requires-Dist: crewai>0.98.0; extra == 'ag2-extras'
38
+ Requires-Dist: embedchain==0.1.126; extra == 'ag2-extras'
39
+ Requires-Dist: huggingface-hub; extra == 'ag2-extras'
40
+ Requires-Dist: ipython; extra == 'ag2-extras'
41
+ Requires-Dist: langchain-community<1,>=0.3.12; extra == 'ag2-extras'
42
+ Requires-Dist: markdownify; extra == 'ag2-extras'
37
43
  Requires-Dist: pgvector>=0.3.6; extra == 'ag2-extras'
44
+ Requires-Dist: protobuf>=4.25.3; extra == 'ag2-extras'
38
45
  Requires-Dist: psycopg[binary]>=3.2.3; extra == 'ag2-extras'
46
+ Requires-Dist: psycopg[binary]>=3.2.4; extra == 'ag2-extras'
39
47
  Requires-Dist: pyautogen[anthropic]==0.7.3; extra == 'ag2-extras'
40
48
  Requires-Dist: pyautogen[bedrock]==0.7.3; extra == 'ag2-extras'
49
+ Requires-Dist: pyautogen[cohere]==0.7.3; extra == 'ag2-extras'
41
50
  Requires-Dist: pyautogen[gemini]==0.7.3; extra == 'ag2-extras'
42
51
  Requires-Dist: pyautogen[groq]==0.7.3; extra == 'ag2-extras'
43
52
  Requires-Dist: pyautogen[lmm]==0.7.3; extra == 'ag2-extras'
44
53
  Requires-Dist: pyautogen[mistral]==0.7.3; extra == 'ag2-extras'
45
54
  Requires-Dist: pyautogen[neo4j]==0.7.3; extra == 'ag2-extras'
46
- Requires-Dist: pyautogen[retrievechat-mongodb]==0.7.3; extra == 'ag2-extras'
47
- Requires-Dist: pyautogen[retrievechat-pgvector]==0.7.3; extra == 'ag2-extras'
48
- Requires-Dist: pyautogen[retrievechat-qdrant]==0.7.3; (python_version < '3.13') and extra == 'ag2-extras'
49
- Requires-Dist: pyautogen[retrievechat]==0.7.3; extra == 'ag2-extras'
55
+ Requires-Dist: pyautogen[ollama]==0.7.3; extra == 'ag2-extras'
50
56
  Requires-Dist: pyautogen[together]==0.7.3; extra == 'ag2-extras'
51
57
  Requires-Dist: pyautogen[websurfer]==0.7.3; extra == 'ag2-extras'
52
- Requires-Dist: pymongo>=4.10.1; extra == 'ag2-extras'
53
- Requires-Dist: qdrant-client[fastembed]; (python_version >= '3.13') and extra == 'ag2-extras'
54
- Requires-Dist: sentence-transformers; (platform_system != 'Linux') and extra == 'ag2-extras'
58
+ Requires-Dist: pydantic-ai==0.0.21; extra == 'ag2-extras'
59
+ Requires-Dist: pymongo>=4.11; extra == 'ag2-extras'
60
+ Requires-Dist: pypdf; extra == 'ag2-extras'
61
+ Requires-Dist: qdrant-client[fastembed]; extra == 'ag2-extras'
62
+ Requires-Dist: sentence-transformers; extra == 'ag2-extras'
63
+ Requires-Dist: weaviate-client==4.10.2; extra == 'ag2-extras'
55
64
  Provides-Extra: dev
56
65
  Requires-Dist: autoflake==2.3.1; extra == 'dev'
57
66
  Requires-Dist: bandit==1.8.2; extra == 'dev'
@@ -74,16 +83,16 @@ Requires-Dist: mdx-include==1.4.2; extra == 'docs'
74
83
  Requires-Dist: mdx-truly-sane-lists==1.3; extra == 'docs'
75
84
  Requires-Dist: mkdocs-jupyter==0.25.1; extra == 'docs'
76
85
  Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
77
- Requires-Dist: mkdocs-material==9.6.1; extra == 'docs'
78
- Requires-Dist: mkdocs-minify-html-plugin==0.2.3; extra == 'docs'
86
+ Requires-Dist: mkdocs-material==9.6.2; extra == 'docs'
87
+ Requires-Dist: mkdocs-minify-html-plugin==0.2.4; extra == 'docs'
79
88
  Requires-Dist: mkdocs==1.6.1; extra == 'docs'
80
- Requires-Dist: mkdocstrings-python==1.13.0; extra == 'docs'
81
- Requires-Dist: mkdocstrings[crystal,python]==0.27.0; extra == 'docs'
89
+ Requires-Dist: mkdocstrings-python==1.14.1; extra == 'docs'
90
+ Requires-Dist: mkdocstrings[crystal,python]==0.28.0; extra == 'docs'
82
91
  Provides-Extra: jupyter
83
92
  Requires-Dist: jupyterlab>=4.3.0; extra == 'jupyter'
84
- Requires-Dist: waldiez-jupyter==0.3.11; extra == 'jupyter'
93
+ Requires-Dist: waldiez-jupyter==0.3.12; extra == 'jupyter'
85
94
  Provides-Extra: studio
86
- Requires-Dist: waldiez-studio==0.3.11; extra == 'studio'
95
+ Requires-Dist: waldiez-studio==0.3.12; extra == 'studio'
87
96
  Provides-Extra: test
88
97
  Requires-Dist: pytest-asyncio==0.25.3; extra == 'test'
89
98
  Requires-Dist: pytest-cov==6.0.0; extra == 'test'
@@ -24,7 +24,7 @@ classifiers = [
24
24
  dependencies =[
25
25
  "aiocsv==1.3.2",
26
26
  "aiofiles==24.1.0",
27
- "aiosqlite==0.20.0",
27
+ "aiosqlite==0.21.0",
28
28
  "asyncer==0.0.8",
29
29
  "graphviz==0.20.3",
30
30
  "pandas>=2",
@@ -32,7 +32,6 @@ dependencies =[
32
32
  "jupytext",
33
33
  "parso==0.8.4",
34
34
  "pydantic>=2.6.1,<3",
35
- # together(ag2 extra) 1.2.0 depends on typer<0.13 and >=0.9
36
35
  "typer>=0.9,<0.16",
37
36
  "httpx<1",
38
37
  ]
@@ -51,10 +50,10 @@ exclude = [ "**/example.py" ]
51
50
 
52
51
  [project.optional-dependencies]
53
52
  studio = [
54
- "waldiez_studio==0.3.11",
53
+ "waldiez_studio==0.3.12",
55
54
  ]
56
55
  jupyter = [
57
- "waldiez_jupyter==0.3.11",
56
+ "waldiez_jupyter==0.3.12",
58
57
  "jupyterlab>=4.3.0",
59
58
  ]
60
59
  dev = [
@@ -75,52 +74,40 @@ dev = [
75
74
  'toml; python_version <= "3.10"',
76
75
  'types-toml== 0.10.8.20240310',
77
76
  ]
78
- # let's stay with <3.13 for now
79
- ####
80
- # fastembed and fastembed-gpu are not available, yet for python 3.13
81
- # ref: https://github.com/qdrant/qdrant-client/blob/master/pyproject.toml
82
- # fastembed = [
83
- # { version = "0.3.6", optional = true, python = "<3.13" }
84
- # ]
85
- # fastembed-gpu = [
86
- # { version = "0.3.6", optional = true, python = "<3.13" }
87
- # ]
88
- ####
89
- # the pinned chromadb version (pyautogen[retrievechat]) (0.5.3)
90
- # needs numpy <2.0.0
91
- # but pyautogen wants numpy >=1.21.0 for python 3.13
92
- #
93
- # refs:
94
- # https://github.com/chroma-core/chroma/blob/0.5.3/pyproject.toml#L24C3-L24C30
95
- #
96
- # https://github.com/ag2ai/ag2/blob/main/setup.py#L33
97
- #
98
- # captainagent(ag2 extra) depends on pysqlite3-binary,
99
- # but the wheels are only for linux (not checked every py version)
100
- # on windows with py 3.12, it seems to not work.
101
77
  ag2_extras =[
102
- 'pgvector>=0.3.6',
103
- 'psycopg[binary]>=3.2.3',
78
+ # models
104
79
  'pyautogen[anthropic]==0.7.3',
105
80
  'pyautogen[bedrock]==0.7.3',
106
- 'autogen[captainagent]==0.7.3; platform_system == "Linux"',
107
- 'chromadb; platform_system != "Linux"',
108
- 'sentence-transformers; platform_system != "Linux"',
109
- 'huggingface-hub; platform_system != "Linux"',
81
+ 'pyautogen[cohere]==0.7.3',
110
82
  'pyautogen[gemini]==0.7.3',
111
83
  'pyautogen[groq]==0.7.3',
112
84
  'pyautogen[lmm]==0.7.3',
113
85
  'pyautogen[mistral]==0.7.3',
114
- 'pyautogen[neo4j]==0.7.3',
115
- 'pyautogen[retrievechat-mongodb]==0.7.3',
116
- 'pyautogen[retrievechat-pgvector]==0.7.3',
117
- 'pyautogen[retrievechat-qdrant]==0.7.3; python_version < "3.13"',
118
- 'qdrant-client[fastembed]; python_version >= "3.13"',
119
- 'pyautogen[retrievechat]==0.7.3',
120
- 'pyautogen[together]==0.7.3',
86
+ 'pyautogen[ollama]==0.7.3',
121
87
  'pyautogen[together]==0.7.3',
88
+ # utils
89
+ 'pyautogen[neo4j]==0.7.3',
122
90
  'pyautogen[websurfer]==0.7.3',
123
- 'pymongo>=4.10.1',
91
+ 'chromadb>=0.5.23',
92
+ 'pgvector>=0.3.6',
93
+ 'psycopg[binary]>=3.2.3',
94
+ 'protobuf>=4.25.3',
95
+ 'pypdf',
96
+ 'ipython',
97
+ 'markdownify',
98
+ 'beautifulsoup4',
99
+ 'sentence-transformers',
100
+ 'huggingface-hub',
101
+ 'qdrant-client[fastembed]',
102
+ 'pgvector>=0.3.6',
103
+ 'psycopg[binary]>=3.2.4',
104
+ 'crewai-tools==0.33.0',
105
+ 'embedchain==0.1.126',
106
+ 'crewai>0.98.0',
107
+ 'weaviate-client==4.10.2',
108
+ 'langchain-community>=0.3.12,<1',
109
+ 'pydantic-ai==0.0.21',
110
+ 'pymongo>=4.11',
124
111
  ]
125
112
  test = [
126
113
  'pytest==8.3.4',
@@ -137,10 +124,10 @@ docs = [
137
124
  'mkdocs==1.6.1',
138
125
  'mkdocs-jupyter==0.25.1',
139
126
  'mkdocs-macros-plugin==1.3.7',
140
- 'mkdocs-material==9.6.1',
141
- 'mkdocs-minify-html-plugin==0.2.3',
142
- 'mkdocstrings[crystal,python]==0.27.0',
143
- 'mkdocstrings-python==1.13.0'
127
+ 'mkdocs-material==9.6.2',
128
+ 'mkdocs-minify-html-plugin==0.2.4',
129
+ 'mkdocstrings[crystal,python]==0.28.0',
130
+ 'mkdocstrings-python==1.14.1'
144
131
  ]
145
132
 
146
133
  [project.scripts]
@@ -2,4 +2,4 @@
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
3
  """Version information for Waldiez."""
4
4
 
5
- __version__ = "0.3.11"
5
+ __version__ = "0.3.12"
@@ -6,7 +6,7 @@
6
6
  from pathlib import Path
7
7
  from typing import Callable, Dict, List, Optional, Tuple, Union
8
8
 
9
- from waldiez.models import WaldiezAgent, WaldiezChat
9
+ from waldiez.models import WaldiezAgent, WaldiezChat, WaldiezModel
10
10
 
11
11
  from ..base import (
12
12
  AgentPosition,
@@ -18,9 +18,8 @@ from ..base import (
18
18
  ImportPosition,
19
19
  )
20
20
  from .utils import (
21
- get_agent_class_name,
22
21
  get_agent_code_execution_config,
23
- get_agent_imports,
22
+ get_captain_agent_extras,
24
23
  get_group_manager_extras,
25
24
  get_is_termination_message,
26
25
  get_rag_user_extras,
@@ -36,9 +35,9 @@ class AgentExporter(BaseExporter, ExporterMixin):
36
35
  self,
37
36
  agent: WaldiezAgent,
38
37
  agent_names: Dict[str, str],
39
- model_names: Dict[str, str],
40
- skill_names: Dict[str, str],
38
+ models: Tuple[List[WaldiezModel], Dict[str, str]],
41
39
  chats: Tuple[List[WaldiezChat], Dict[str, str]],
40
+ skill_names: Dict[str, str],
42
41
  is_async: bool,
43
42
  group_chat_members: List[WaldiezAgent],
44
43
  for_notebook: bool,
@@ -53,12 +52,12 @@ class AgentExporter(BaseExporter, ExporterMixin):
53
52
  The agent to export.
54
53
  agent_names : Dict[str, str]
55
54
  The agent ids to names mapping.
56
- model_names : Dict[str, str]
57
- The model ids to names mapping.
58
- skill_names : Dict[str, str]
59
- The skill ids to names mapping.
55
+ models : Tuple[List[WaldiezModel], Dict[str, str]]
56
+ All the models and the model ids to names mapping.
60
57
  chats : Tuple[List[WaldiezChat], Dict[str, str]]
61
58
  All the chats and the chat ids to names mapping.
59
+ skill_names : Dict[str, str]
60
+ The skill ids to names mapping.
62
61
  is_async : bool
63
62
  Whether the whole flow is async.
64
63
  for_notebook : bool
@@ -72,14 +71,14 @@ class AgentExporter(BaseExporter, ExporterMixin):
72
71
  if output_dir is not None and not isinstance(output_dir, Path):
73
72
  output_dir = Path(output_dir)
74
73
  self.output_dir = output_dir
75
- self.model_names = model_names
74
+ self.models = models[0]
75
+ self.model_names = models[1]
76
76
  self.skill_names = skill_names
77
77
  self.arguments_resolver = arguments_resolver
78
78
  self.group_chat_members = group_chat_members
79
79
  self.chats = chats
80
80
  self.is_async = is_async
81
81
  self._agent_name = agent_names[agent.id]
82
- self._agent_class = get_agent_class_name(self.agent)
83
82
  # content, argument, import
84
83
  self._code_execution = get_agent_code_execution_config(
85
84
  agent=self.agent,
@@ -119,6 +118,13 @@ class AgentExporter(BaseExporter, ExporterMixin):
119
118
  agent=self.agent,
120
119
  serializer=self.serializer,
121
120
  )
121
+ self._captain = get_captain_agent_extras(
122
+ agent=self.agent,
123
+ agent_names=self.agent_names,
124
+ all_models=self.models,
125
+ serializer=self.serializer,
126
+ output_dir=self.output_dir,
127
+ )
122
128
 
123
129
  def get_imports(self) -> Optional[List[Tuple[str, ImportPosition]]]:
124
130
  """Get the imports.
@@ -130,7 +136,7 @@ class AgentExporter(BaseExporter, ExporterMixin):
130
136
  """
131
137
  position = ImportPosition.THIRD_PARTY
132
138
  # default imports based on the agent class.
133
- agent_imports = get_agent_imports(self._agent_class)
139
+ agent_imports = self.agent.ag2_imports
134
140
  # if code execution is enabled, update the imports.
135
141
  if self._code_execution[2]:
136
142
  agent_imports.add(self._code_execution[2])
@@ -220,7 +226,6 @@ class AgentExporter(BaseExporter, ExporterMixin):
220
226
  """
221
227
  agent = self.agent
222
228
  agent_name = self._agent_name
223
- agent_class = self._agent_class
224
229
  retrieve_arg = self._rag[1]
225
230
  group_chat_arg = self._group_chat[1]
226
231
  is_termination = self._termination[0]
@@ -231,8 +236,10 @@ class AgentExporter(BaseExporter, ExporterMixin):
231
236
  default_auto_reply = (
232
237
  f'"{self.string_escape(agent.data.agent_default_auto_reply)}"'
233
238
  )
234
- extras = f"{group_chat_arg}{retrieve_arg}{self._reasoning}"
235
- agent_str = f"""{agent_name} = {agent_class}(
239
+ extras = (
240
+ f"{group_chat_arg}{retrieve_arg}{self._reasoning}{self._captain}"
241
+ )
242
+ agent_str = f"""{agent_name} = {self.agent.ag2_class}(
236
243
  name="{agent_name}",
237
244
  description="{agent.description}"{system_message_arg},
238
245
  human_input_mode="{agent.data.human_input_mode}",
@@ -2,8 +2,7 @@
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
3
  """Utility functions for generating agent related strings."""
4
4
 
5
- from .agent_class_name import get_agent_class_name
6
- from .agent_imports import get_agent_imports
5
+ from .captain_agent import get_captain_agent_extras
7
6
  from .code_execution import get_agent_code_execution_config
8
7
  from .group_manager import get_group_manager_extras
9
8
  from .rag_user import get_rag_user_extras
@@ -13,10 +12,9 @@ from .teachability import get_agent_teachability_string
13
12
  from .termination_message import get_is_termination_message
14
13
 
15
14
  __all__ = [
16
- "get_agent_class_name",
17
- "get_agent_imports",
18
15
  "get_agent_code_execution_config",
19
16
  "get_agent_teachability_string",
17
+ "get_captain_agent_extras",
20
18
  "get_group_manager_extras",
21
19
  "get_is_termination_message",
22
20
  "get_rag_user_extras",
@@ -0,0 +1,254 @@
1
+ # SPDX-License-Identifier: Apache-2.0.
2
+ # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
+ """ "Extras for exporting a captain agent."""
4
+
5
+ import json
6
+ import os
7
+ from datetime import datetime, timezone
8
+ from pathlib import Path
9
+ from typing import Any, Callable, Dict, List, Optional, Union
10
+
11
+ from waldiez.models import (
12
+ WaldiezAgent,
13
+ WaldiezCaptainAgent,
14
+ WaldiezModel,
15
+ WaldiezModelData,
16
+ )
17
+
18
+
19
+ def get_captain_agent_extras(
20
+ agent: WaldiezAgent,
21
+ agent_names: Dict[str, str],
22
+ all_models: List[WaldiezModel],
23
+ serializer: Callable[..., str],
24
+ output_dir: Optional[Union[str, Path]],
25
+ ) -> str:
26
+ """Get the extra args for the captain agent.
27
+
28
+ Parameters
29
+ ----------
30
+ agent : WaldiezAgent
31
+ The agent.
32
+ agent_names : Dict[str, str]
33
+ A mapping of agent ids to agent names.
34
+ all_models : List[WaldiezModel]
35
+ All the models in the flow.
36
+ serializer : Callable[..., str]
37
+ The serializer to use.
38
+ output_dir : Optional[Union[str, Path]]
39
+ The output directory to save the agent lib and nested config.
40
+ Returns
41
+ -------
42
+ str
43
+ The extra args to use in the captain agent.
44
+ """
45
+ # extra args: nested_config, agent_lib, tool_lib
46
+ if not isinstance(agent, WaldiezCaptainAgent):
47
+ return ""
48
+ agent_name = agent_names[agent.id]
49
+ save_path = str(output_dir) if output_dir else "."
50
+ extra_args_content = "\n" + f' agent_config_save_path=r"{save_path}",'
51
+ if agent.data.agent_lib:
52
+ lib_dict = [
53
+ lib.model_dump(by_alias=False) for lib in agent.data.agent_lib
54
+ ]
55
+ lib_json_name = f"{agent_name}_agent_lib.json"
56
+ agent_lib_path = os.path.join(save_path, lib_json_name)
57
+ with open(agent_lib_path, "w", encoding="utf-8", newline="\n") as f:
58
+ json.dump(lib_dict, f, ensure_ascii=False, indent=4)
59
+ extra_args_content += "\n" + f' agent_lib=r"{agent_lib_path}",'
60
+ if agent.data.tool_lib:
61
+ extra_args_content += "\n" + f' tool_lib="{agent.data.tool_lib}",'
62
+ nested_config = generate_nested_config(
63
+ agent,
64
+ agent_name,
65
+ all_models,
66
+ save_path,
67
+ )
68
+ serialized_nested_config = serializer(nested_config)
69
+ extra_args_content += (
70
+ "\n" + f" nested_config={serialized_nested_config},"
71
+ )
72
+ return extra_args_content
73
+
74
+
75
+ def generate_nested_config(
76
+ agent: WaldiezCaptainAgent,
77
+ agent_name: str,
78
+ all_models: List[WaldiezModel],
79
+ save_path: str,
80
+ ) -> Dict[str, Any]:
81
+ """Generate the nested config for the captain agent.
82
+
83
+ Parameters
84
+ ----------
85
+ agent : WaldiezCaptainAgent
86
+ The captain agent.
87
+ agent_name : str
88
+ The agent name.
89
+ all_models : List[WaldiezModel]
90
+ All the models in the flow.
91
+ save_path : str
92
+ The path to save the nested config.
93
+ Returns
94
+ -------
95
+ Dict[str, Any]
96
+ The nested config.
97
+ """
98
+ config_file_or_env_name = f"{agent_name}_llm_config.json"
99
+ llm_config = get_llm_config(agent, all_models)
100
+ to_serialize = {
101
+ "config_list": [llm_config],
102
+ }
103
+ os.makedirs(save_path, exist_ok=True)
104
+ config_file_or_env_path = os.path.join(save_path, config_file_or_env_name)
105
+ with open(
106
+ config_file_or_env_path, "w", encoding="utf-8", newline="\n"
107
+ ) as f:
108
+ json.dump(to_serialize, f, ensure_ascii=False, indent=4)
109
+ config_file_or_env = f'r"{config_file_or_env_path}"'
110
+ nested_config = {
111
+ "autobuild_init_config": {
112
+ "config_file_or_env": config_file_or_env,
113
+ "builder_model": llm_config["model"],
114
+ "agent_model": llm_config["model"],
115
+ },
116
+ "autobuild_build_config": get_auto_build_build_config(
117
+ agent, llm_config
118
+ ),
119
+ "group_chat_config": {"max_round": agent.data.max_round},
120
+ "group_chat_llm_config": None,
121
+ "max_turns": agent.data.max_turns,
122
+ }
123
+ return nested_config
124
+
125
+
126
+ def get_llm_config(
127
+ agent: WaldiezAgent,
128
+ all_models: List[WaldiezModel],
129
+ ) -> Dict[str, Any]:
130
+ """Get the config list environment variable name and its dict value.
131
+
132
+ Parameters
133
+ ----------
134
+ agent : WaldiezAgent
135
+ The agent.
136
+ all_models : List[WaldiezModel]
137
+ All the models in the flow.
138
+ Returns
139
+ -------
140
+ Dict[str, str]
141
+ The llm config dict.
142
+ """
143
+ model_name = "gpt-4o"
144
+ temperature: Optional[float] = 1
145
+ top_p: Optional[float] = 0.95
146
+ max_tokens: Optional[int] = 2048
147
+ if agent.data.model_ids:
148
+ waldiez_model = get_waldiez_model(agent.data.model_ids[0], all_models)
149
+ model_name = waldiez_model.name
150
+ temperature = waldiez_model.data.temperature
151
+ top_p = waldiez_model.data.top_p
152
+ max_tokens = waldiez_model.data.max_tokens
153
+ config_dict = {
154
+ "model": model_name,
155
+ "temperature": temperature,
156
+ "top_p": top_p,
157
+ "max_tokens": max_tokens,
158
+ }
159
+ return config_dict
160
+
161
+
162
+ def get_auto_build_build_config(
163
+ agent: WaldiezAgent,
164
+ llm_config: Dict[str, Any],
165
+ ) -> Dict[str, Any]:
166
+ """Get the auto build build config.
167
+
168
+ Parameters
169
+ ----------
170
+ agent : WaldiezAgent
171
+ The agent.
172
+ llm_config : Dict[str, Any]
173
+ The llm config.
174
+
175
+ Returns
176
+ -------
177
+ Dict[str, Any]
178
+ The auto build build config.
179
+ """
180
+ coding = False
181
+ code_execution_config = {
182
+ "timeout": 300,
183
+ "work_dir": "groupchat",
184
+ "last_n_messages": 1,
185
+ "use_docker": False,
186
+ }
187
+ if agent.data.code_execution_config is not False:
188
+ coding = True
189
+ code_execution_config["work_dir"] = (
190
+ agent.data.code_execution_config.work_dir or "groupchat"
191
+ )
192
+ code_execution_config["last_n_messages"] = (
193
+ agent.data.code_execution_config.last_n_messages or 1
194
+ )
195
+ code_execution_config["timeout"] = (
196
+ agent.data.code_execution_config.timeout or 300
197
+ )
198
+ return {
199
+ "default_llm_config": {
200
+ "temperature": llm_config["temperature"],
201
+ "top_p": llm_config["top_p"],
202
+ "max_tokens": llm_config["max_tokens"],
203
+ },
204
+ "code_execution_config": code_execution_config,
205
+ "coding": coding,
206
+ }
207
+
208
+
209
+ def get_waldiez_model(
210
+ model_id: str, all_models: List[WaldiezModel]
211
+ ) -> WaldiezModel:
212
+ """Get the model name from the model id.
213
+
214
+ Parameters
215
+ ----------
216
+ model_id : str
217
+ The model id.
218
+ all_models : List[WaldiezModel]
219
+ All the models in the flow.
220
+
221
+ Returns
222
+ -------
223
+ str
224
+ The model name.
225
+ """
226
+ for model in all_models:
227
+ if model.id == model_id:
228
+ return model
229
+ now = (
230
+ datetime.now(tz=timezone.utc)
231
+ .isoformat(timespec="milliseconds")
232
+ .replace("+00:00", "Z")
233
+ )
234
+ return WaldiezModel(
235
+ id=model_id,
236
+ type="model",
237
+ name="gpt-4o",
238
+ description="The GPT-4o model.",
239
+ tags=["gpt-4o"],
240
+ requirements=[],
241
+ created_at=now,
242
+ updated_at=now,
243
+ data=WaldiezModelData(
244
+ api_type="openai",
245
+ temperature=1,
246
+ top_p=0.95,
247
+ max_tokens=2048,
248
+ base_url=None,
249
+ api_key=os.environ.get("OPENAI_API_KEY", "REPLACE_ME"),
250
+ api_version=None,
251
+ default_headers={},
252
+ price=None,
253
+ ),
254
+ )
@@ -240,13 +240,10 @@ class FlowExporter(BaseExporter, ExporterMixin):
240
240
  cache_seed=cache_seed,
241
241
  )
242
242
  else:
243
- # content += f" with Cache.disk(cache_seed={cache_seed}" + "):\n"
244
- # content += f"{flow_chats}" + "\n"
245
- # content += "\n" + chats_content + "\n"
246
243
  if chats_content.startswith("\n"):
247
244
  chats_content = chats_content[1:]
248
245
  content += (
249
- "\n" + f"with Cache.disk(cache_seed={cache_seed}):"
246
+ "\n" + f"with Cache.disk(cache_seed={cache_seed}) as cache:"
250
247
  "\n" + chats_content + "\n"
251
248
  )
252
249
  if is_async:
@@ -431,9 +428,9 @@ class FlowExporter(BaseExporter, ExporterMixin):
431
428
  exporter = AgentExporter(
432
429
  agent=agent,
433
430
  agent_names=self.agent_names,
434
- model_names=self.model_names,
435
- skill_names=self.skill_names,
431
+ models=(self.models, self.model_names),
436
432
  chats=(self.chats, self.chat_names),
433
+ skill_names=self.skill_names,
437
434
  is_async=self.waldiez.is_async,
438
435
  for_notebook=self.for_notebook,
439
436
  output_dir=self.output_dir,
@@ -53,7 +53,7 @@ def get_def_main(
53
53
  else:
54
54
  content += "def call_main() -> None:\n"
55
55
  content += ' """Run the main function and print the results."""\n'
56
- content += " results = "
56
+ content += " results: Union[ChatResult, List[ChatResult], Dict[int, ChatResult]] = "
57
57
  if is_async:
58
58
  content += "await "
59
59
  content += "main()\n"
@@ -62,11 +62,12 @@ def get_def_main(
62
62
  content += " ordered_results = dict(sorted(results.items()))\n"
63
63
  content += " for _, result in ordered_results.items():\n"
64
64
  content += " pprint(asdict(result))\n"
65
- content += " elif isinstance(results, list):\n"
65
+ content += " else:\n"
66
+ content += " if not isinstance(results, list):\n"
67
+ content += " results = [results]\n"
66
68
  content += " for result in results:\n"
67
69
  content += " pprint(asdict(result))\n"
68
- content += " else:\n"
69
- content += " pprint(asdict(results))\n\n\n"
70
+ content += "\n\n"
70
71
  content += 'if __name__ == "__main__":\n'
71
72
  if is_async:
72
73
  content += " anyio.run(call_main)\n"
@@ -23,6 +23,9 @@ from .agents import (
23
23
  WaldiezAgentType,
24
24
  WaldiezAssistant,
25
25
  WaldiezAssistantData,
26
+ WaldiezCaptainAgent,
27
+ WaldiezCaptainAgentData,
28
+ WaldiezCaptainAgentLibEntry,
26
29
  WaldiezGroupManager,
27
30
  WaldiezGroupManagerData,
28
31
  WaldiezGroupManagerSpeakers,
@@ -87,6 +90,9 @@ __all__ = [
87
90
  "WaldiezAgentType",
88
91
  "WaldiezAssistant",
89
92
  "WaldiezAssistantData",
93
+ "WaldiezCaptainAgent",
94
+ "WaldiezCaptainAgentData",
95
+ "WaldiezCaptainAgentLibEntry",
90
96
  "WaldiezChat",
91
97
  "WaldiezChatData",
92
98
  "WaldiezChatSummary",