waldiez 0.4.2__tar.gz → 0.4.3__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.
- {waldiez-0.4.2 → waldiez-0.4.3}/PKG-INFO +36 -27
- {waldiez-0.4.2 → waldiez-0.4.3}/pyproject.toml +35 -28
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/_version.py +1 -1
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/captain_agent.py +17 -8
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/models/utils.py +4 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/model/model.py +1 -1
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/runner.py +8 -4
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/utils/pysqlite3_checker.py +6 -2
- {waldiez-0.4.2 → waldiez-0.4.3}/.gitignore +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/LICENSE +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/NOTICE.md +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/README.md +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/__main__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/cli.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporter.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/agent_exporter.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/code_execution.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/group_manager.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/rag_user/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/rag_user/chroma_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/rag_user/mongo_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/rag_user/pgvector_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/rag_user/qdrant_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/rag_user/rag_user.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/rag_user/vector_db.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/reasoning.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/swarm_agent.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/teachability.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/agent/utils/termination_message.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/agent_position.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/base_exporter.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/export_position.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/import_position.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/mixin.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/utils/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/utils/comments.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/utils/naming.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/utils/path_check.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/base/utils/to_string.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/chats/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/chats/chats_exporter.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/chats/utils/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/chats/utils/common.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/chats/utils/nested.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/chats/utils/sequential.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/chats/utils/single_chat.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/chats/utils/swarm.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/flow_exporter.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/utils/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/utils/agent_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/utils/chat_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/utils/def_main.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/utils/flow_content.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/utils/flow_names.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/utils/importing_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/flow/utils/logging_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/models/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/models/models_exporter.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/skills/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/skills/skills_exporter.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/exporting/skills/utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/agent.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/agent_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/agent_type.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/code_execution.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/linked_skill.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/nested_chat.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/teachability.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agent/termination_message.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/agents.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/assistant/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/assistant/assistant.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/assistant/assistant_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/captain_agent/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/captain_agent/captain_agent.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/captain_agent/captain_agent_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/captain_agent/captain_agent_lib_entry.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/extra_requirements.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/group_manager/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/group_manager/group_manager.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/group_manager/group_manager_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/group_manager/speakers.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/rag_user/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/rag_user/rag_user.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/rag_user/rag_user_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/rag_user/retrieve_config.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/rag_user/vector_db_config.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/reasoning/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/reasoning/reasoning_agent.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/reasoning/reasoning_agent_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/swarm_agent/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/swarm_agent/after_work.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/swarm_agent/on_condition.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/swarm_agent/on_condition_available.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/swarm_agent/on_condition_target.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/swarm_agent/swarm_agent.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/swarm_agent/swarm_agent_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/swarm_agent/update_system_message.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/user_proxy/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/user_proxy/user_proxy.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/user_proxy/user_proxy_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/chat/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/chat/chat.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/chat/chat_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/chat/chat_message.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/chat/chat_nested.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/chat/chat_summary.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/common/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/common/ag2_version.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/common/base.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/common/date_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/common/dict_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/common/method_utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/flow/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/flow/flow.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/flow/flow_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/flow/utils.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/model/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/model/extra_requirements.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/model/model_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/skill/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/skill/extra_requirements.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/skill/skill.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/skill/skill_data.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/skill/skill_type.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/waldiez.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/py.typed +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/running/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/running/environment.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/running/gen_seq_diagram.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/running/running.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/utils/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/utils/cli_extras/__init__.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/utils/cli_extras/jupyter.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/utils/cli_extras/studio.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/utils/conflict_checker.py +0 -0
- {waldiez-0.4.2 → waldiez-0.4.3}/waldiez/utils/flaml_warnings.py +0 -0
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waldiez
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: waldiez
|
|
5
|
-
Project-URL: homepage, https://waldiez.
|
|
5
|
+
Project-URL: homepage, https://waldiez.io
|
|
6
6
|
Project-URL: repository, https://github.com/waldiez/python.git
|
|
7
|
+
Project-URL: documentation, https://waldiez.github.io/python/
|
|
8
|
+
Project-URL: issues, https://github.com/waldiez/python/issues
|
|
7
9
|
Author-email: Panagiotis Kasnesis <pkasnesis@waldiez.io>, Lazaros Toumanidis <laztoum@waldiez.io>, Stella Ioannidou <stella@humancentered.gr>
|
|
8
10
|
License-File: LICENSE
|
|
9
11
|
License-File: NOTICE.md
|
|
@@ -26,10 +28,10 @@ Requires-Dist: asyncer==0.0.8
|
|
|
26
28
|
Requires-Dist: graphviz==0.20.3
|
|
27
29
|
Requires-Dist: httpx<1
|
|
28
30
|
Requires-Dist: jupytext
|
|
29
|
-
Requires-Dist: numpy
|
|
31
|
+
Requires-Dist: numpy<=2.2.4
|
|
30
32
|
Requires-Dist: pandas>=2
|
|
31
33
|
Requires-Dist: parso==0.8.4
|
|
32
|
-
Requires-Dist: pyautogen[openai]==0.8.
|
|
34
|
+
Requires-Dist: pyautogen[openai]==0.8.6
|
|
33
35
|
Requires-Dist: pydantic<3,>=2.10.2
|
|
34
36
|
Requires-Dist: typer<0.16,>=0.9
|
|
35
37
|
Provides-Extra: ag2-extras
|
|
@@ -42,23 +44,30 @@ Requires-Dist: langchain-community<1,>=0.3.12; extra == 'ag2-extras'
|
|
|
42
44
|
Requires-Dist: markdownify; extra == 'ag2-extras'
|
|
43
45
|
Requires-Dist: pgvector>=0.4.0; extra == 'ag2-extras'
|
|
44
46
|
Requires-Dist: protobuf>=4.25.3; extra == 'ag2-extras'
|
|
47
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'linux') and extra == 'ag2-extras'
|
|
48
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'AARCH64') and extra == 'ag2-extras'
|
|
49
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'ARM64') and extra == 'ag2-extras'
|
|
50
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'aarch64') and extra == 'ag2-extras'
|
|
51
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'arm64') and extra == 'ag2-extras'
|
|
52
|
+
Requires-Dist: psycopg[binary]==3.2.6; (sys_platform != 'linux' and platform_machine != 'arm64' and platform_machine != 'ARM64' and platform_machine != 'aarch64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
45
53
|
Requires-Dist: psycopg[binary]>=3.2.6; extra == 'ag2-extras'
|
|
46
|
-
Requires-Dist: pyautogen[anthropic]==0.8.
|
|
47
|
-
Requires-Dist: pyautogen[bedrock]==0.8.
|
|
48
|
-
Requires-Dist: pyautogen[cohere]==0.8.
|
|
49
|
-
Requires-Dist: pyautogen[gemini]==0.8.
|
|
50
|
-
Requires-Dist: pyautogen[groq]==0.8.
|
|
51
|
-
Requires-Dist: pyautogen[interop-crewai]==0.8.
|
|
52
|
-
Requires-Dist: pyautogen[interop-langchain]==0.8.
|
|
53
|
-
Requires-Dist: pyautogen[lmm]==0.8.
|
|
54
|
-
Requires-Dist: pyautogen[mistral]==0.8.
|
|
55
|
-
Requires-Dist: pyautogen[neo4j]==0.8.
|
|
56
|
-
Requires-Dist: pyautogen[ollama]==0.8.
|
|
57
|
-
Requires-Dist: pyautogen[together]==0.8.
|
|
58
|
-
Requires-Dist: pyautogen[websurfer]==0.8.
|
|
54
|
+
Requires-Dist: pyautogen[anthropic]==0.8.6; extra == 'ag2-extras'
|
|
55
|
+
Requires-Dist: pyautogen[bedrock]==0.8.6; extra == 'ag2-extras'
|
|
56
|
+
Requires-Dist: pyautogen[cohere]==0.8.6; extra == 'ag2-extras'
|
|
57
|
+
Requires-Dist: pyautogen[gemini]==0.8.6; extra == 'ag2-extras'
|
|
58
|
+
Requires-Dist: pyautogen[groq]==0.8.6; extra == 'ag2-extras'
|
|
59
|
+
Requires-Dist: pyautogen[interop-crewai]==0.8.6; extra == 'ag2-extras'
|
|
60
|
+
Requires-Dist: pyautogen[interop-langchain]==0.8.6; extra == 'ag2-extras'
|
|
61
|
+
Requires-Dist: pyautogen[lmm]==0.8.6; extra == 'ag2-extras'
|
|
62
|
+
Requires-Dist: pyautogen[mistral]==0.8.6; extra == 'ag2-extras'
|
|
63
|
+
Requires-Dist: pyautogen[neo4j]==0.8.6; extra == 'ag2-extras'
|
|
64
|
+
Requires-Dist: pyautogen[ollama]==0.8.6; extra == 'ag2-extras'
|
|
65
|
+
Requires-Dist: pyautogen[together]==0.8.6; extra == 'ag2-extras'
|
|
66
|
+
Requires-Dist: pyautogen[websurfer]==0.8.6; extra == 'ag2-extras'
|
|
59
67
|
Requires-Dist: pydantic-ai>=0.0.21; extra == 'ag2-extras'
|
|
60
68
|
Requires-Dist: pymongo>=4.11; extra == 'ag2-extras'
|
|
61
69
|
Requires-Dist: pypdf; extra == 'ag2-extras'
|
|
70
|
+
Requires-Dist: pysqlite3-binary==0.5.4; (sys_platform == 'linux' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
62
71
|
Requires-Dist: qdrant-client[fastembed]; extra == 'ag2-extras'
|
|
63
72
|
Requires-Dist: sentence-transformers; extra == 'ag2-extras'
|
|
64
73
|
Provides-Extra: dev
|
|
@@ -68,14 +77,14 @@ Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
|
|
|
68
77
|
Requires-Dist: flake8==7.2.0; extra == 'dev'
|
|
69
78
|
Requires-Dist: isort==6.0.1; extra == 'dev'
|
|
70
79
|
Requires-Dist: mypy==1.15.0; extra == 'dev'
|
|
71
|
-
Requires-Dist: pandas-stubs; extra == 'dev'
|
|
80
|
+
Requires-Dist: pandas-stubs==2.2.3.250308; extra == 'dev'
|
|
72
81
|
Requires-Dist: pre-commit==4.2.0; extra == 'dev'
|
|
73
82
|
Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
|
|
74
83
|
Requires-Dist: pylint==3.3.6; extra == 'dev'
|
|
75
84
|
Requires-Dist: python-dotenv==1.1.0; extra == 'dev'
|
|
76
|
-
Requires-Dist: ruff==0.11.
|
|
77
|
-
Requires-Dist: toml; (python_version <= '3.10') and extra == 'dev'
|
|
78
|
-
Requires-Dist: types-pyyaml==6.0.12.
|
|
85
|
+
Requires-Dist: ruff==0.11.5; extra == 'dev'
|
|
86
|
+
Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
|
|
87
|
+
Requires-Dist: types-pyyaml==6.0.12.20250402; extra == 'dev'
|
|
79
88
|
Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
|
|
80
89
|
Requires-Dist: yamllint==1.37.0; extra == 'dev'
|
|
81
90
|
Provides-Extra: docs
|
|
@@ -83,19 +92,19 @@ Requires-Dist: mdx-include==1.4.2; extra == 'docs'
|
|
|
83
92
|
Requires-Dist: mdx-truly-sane-lists==1.3; extra == 'docs'
|
|
84
93
|
Requires-Dist: mkdocs-jupyter==0.25.1; extra == 'docs'
|
|
85
94
|
Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
|
|
86
|
-
Requires-Dist: mkdocs-material==9.6.
|
|
95
|
+
Requires-Dist: mkdocs-material==9.6.11; extra == 'docs'
|
|
87
96
|
Requires-Dist: mkdocs-minify-html-plugin==0.3.1; extra == 'docs'
|
|
88
97
|
Requires-Dist: mkdocs==1.6.1; extra == 'docs'
|
|
89
|
-
Requires-Dist: mkdocstrings-python==1.16.
|
|
90
|
-
Requires-Dist: mkdocstrings[crystal,python]==0.29.
|
|
98
|
+
Requires-Dist: mkdocstrings-python==1.16.10; extra == 'docs'
|
|
99
|
+
Requires-Dist: mkdocstrings[crystal,python]==0.29.1; extra == 'docs'
|
|
91
100
|
Provides-Extra: jupyter
|
|
92
101
|
Requires-Dist: jupyterlab>=4.3.0; extra == 'jupyter'
|
|
93
|
-
Requires-Dist: waldiez-jupyter==0.4.
|
|
102
|
+
Requires-Dist: waldiez-jupyter==0.4.3; extra == 'jupyter'
|
|
94
103
|
Provides-Extra: studio
|
|
95
|
-
Requires-Dist: waldiez-studio==0.4.
|
|
104
|
+
Requires-Dist: waldiez-studio==0.4.3; extra == 'studio'
|
|
96
105
|
Provides-Extra: test
|
|
97
106
|
Requires-Dist: pytest-asyncio==0.26.0; extra == 'test'
|
|
98
|
-
Requires-Dist: pytest-cov==6.
|
|
107
|
+
Requires-Dist: pytest-cov==6.1.1; extra == 'test'
|
|
99
108
|
Requires-Dist: pytest-html==4.1.1; extra == 'test'
|
|
100
109
|
Requires-Dist: pytest-sugar==1.0.0; extra == 'test'
|
|
101
110
|
Requires-Dist: pytest-timeout==2.3.1; extra == 'test'
|
|
@@ -27,10 +27,10 @@ dependencies =[
|
|
|
27
27
|
"aiofiles==24.1.0",
|
|
28
28
|
"aiosqlite==0.21.0",
|
|
29
29
|
"asyncer==0.0.8",
|
|
30
|
-
"numpy
|
|
30
|
+
"numpy<=2.2.4",
|
|
31
31
|
"graphviz==0.20.3",
|
|
32
32
|
"pandas>=2",
|
|
33
|
-
"pyautogen[openai]==0.8.
|
|
33
|
+
"pyautogen[openai]==0.8.6",
|
|
34
34
|
"jupytext",
|
|
35
35
|
"parso==0.8.4",
|
|
36
36
|
"pydantic>=2.10.2,<3",
|
|
@@ -39,9 +39,10 @@ dependencies =[
|
|
|
39
39
|
]
|
|
40
40
|
|
|
41
41
|
[project.urls]
|
|
42
|
-
homepage = 'https://waldiez.
|
|
42
|
+
homepage = 'https://waldiez.io'
|
|
43
43
|
repository = 'https://github.com/waldiez/python.git'
|
|
44
|
-
|
|
44
|
+
documentation = "https://waldiez.github.io/python/"
|
|
45
|
+
issues = "https://github.com/waldiez/python/issues"
|
|
45
46
|
|
|
46
47
|
[tool.hatch.build.targets.sdist]
|
|
47
48
|
packages = ["waldiez", "waldiez.*"]
|
|
@@ -53,10 +54,10 @@ exclude = [ "**/example.py" ]
|
|
|
53
54
|
|
|
54
55
|
[project.optional-dependencies]
|
|
55
56
|
studio = [
|
|
56
|
-
|
|
57
|
+
"waldiez_studio==0.4.3",
|
|
57
58
|
]
|
|
58
59
|
jupyter = [
|
|
59
|
-
|
|
60
|
+
"waldiez_jupyter==0.4.3",
|
|
60
61
|
'jupyterlab>=4.3.0',
|
|
61
62
|
]
|
|
62
63
|
dev = [
|
|
@@ -66,38 +67,44 @@ dev = [
|
|
|
66
67
|
'flake8==7.2.0',
|
|
67
68
|
'isort==6.0.1',
|
|
68
69
|
'mypy==1.15.0',
|
|
69
|
-
'pandas-stubs',
|
|
70
|
+
'pandas-stubs==2.2.3.250308',
|
|
70
71
|
'pre-commit==4.2.0',
|
|
71
72
|
'pydocstyle==6.3.0',
|
|
72
73
|
'pylint==3.3.6',
|
|
73
74
|
'python-dotenv==1.1.0',
|
|
74
|
-
'ruff==0.11.
|
|
75
|
-
'types-pyyaml==6.0.12.
|
|
75
|
+
'ruff==0.11.5',
|
|
76
|
+
'types-pyyaml==6.0.12.20250402',
|
|
76
77
|
'yamllint==1.37.0',
|
|
77
|
-
'toml; python_version <= "3.10"',
|
|
78
|
+
'toml==0.10.2; python_version <= "3.10"',
|
|
78
79
|
'types-toml==0.10.8.20240310',
|
|
79
80
|
]
|
|
80
81
|
ag2_extras =[
|
|
81
82
|
# models
|
|
82
|
-
'pyautogen[anthropic]==0.8.
|
|
83
|
-
'pyautogen[bedrock]==0.8.
|
|
84
|
-
'pyautogen[cohere]==0.8.
|
|
85
|
-
'pyautogen[gemini]==0.8.
|
|
86
|
-
'pyautogen[groq]==0.8.
|
|
87
|
-
'pyautogen[lmm]==0.8.
|
|
88
|
-
'pyautogen[mistral]==0.8.
|
|
89
|
-
'pyautogen[ollama]==0.8.
|
|
90
|
-
'pyautogen[together]==0.8.
|
|
83
|
+
'pyautogen[anthropic]==0.8.6',
|
|
84
|
+
'pyautogen[bedrock]==0.8.6',
|
|
85
|
+
'pyautogen[cohere]==0.8.6',
|
|
86
|
+
'pyautogen[gemini]==0.8.6',
|
|
87
|
+
'pyautogen[groq]==0.8.6',
|
|
88
|
+
'pyautogen[lmm]==0.8.6',
|
|
89
|
+
'pyautogen[mistral]==0.8.6',
|
|
90
|
+
'pyautogen[ollama]==0.8.6',
|
|
91
|
+
'pyautogen[together]==0.8.6',
|
|
91
92
|
# utils
|
|
92
|
-
'pyautogen[interop-crewai]==0.8.
|
|
93
|
-
'pyautogen[interop-langchain]==0.8.
|
|
94
|
-
'pyautogen[neo4j]==0.8.
|
|
95
|
-
'pyautogen[websurfer]==0.8.
|
|
93
|
+
'pyautogen[interop-crewai]==0.8.6',
|
|
94
|
+
'pyautogen[interop-langchain]==0.8.6',
|
|
95
|
+
'pyautogen[neo4j]==0.8.6',
|
|
96
|
+
'pyautogen[websurfer]==0.8.6',
|
|
96
97
|
'chromadb>=0.5.10',
|
|
97
98
|
'pgvector>=0.4.0',
|
|
98
|
-
|
|
99
|
+
"psycopg==3.2.6; sys_platform == 'linux'",
|
|
100
|
+
"psycopg==3.2.6; sys_platform == 'win32' and platform_machine == 'arm64'",
|
|
101
|
+
"psycopg==3.2.6; sys_platform == 'win32' and platform_machine == 'ARM64'",
|
|
102
|
+
"psycopg==3.2.6; sys_platform == 'win32' and platform_machine == 'aarch64'",
|
|
103
|
+
"psycopg==3.2.6; sys_platform == 'win32' and platform_machine == 'AARCH64'",
|
|
104
|
+
"psycopg[binary]==3.2.6; sys_platform != 'linux' and platform_machine != 'arm64' and platform_machine != 'ARM64' and platform_machine != 'aarch64' and platform_machine != 'AARCH64'",
|
|
99
105
|
'protobuf>=4.25.3',
|
|
100
106
|
'pypdf',
|
|
107
|
+
"pysqlite3-binary==0.5.4; sys_platform == 'linux' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
101
108
|
'ipython',
|
|
102
109
|
'markdownify',
|
|
103
110
|
'beautifulsoup4',
|
|
@@ -114,7 +121,7 @@ ag2_extras =[
|
|
|
114
121
|
test = [
|
|
115
122
|
'pytest==8.3.5',
|
|
116
123
|
'pytest-asyncio==0.26.0',
|
|
117
|
-
'pytest-cov==6.
|
|
124
|
+
'pytest-cov==6.1.1',
|
|
118
125
|
'pytest-html==4.1.1',
|
|
119
126
|
'pytest-sugar==1.0.0',
|
|
120
127
|
'pytest-timeout==2.3.1',
|
|
@@ -126,10 +133,10 @@ docs = [
|
|
|
126
133
|
'mkdocs==1.6.1',
|
|
127
134
|
'mkdocs-jupyter==0.25.1',
|
|
128
135
|
'mkdocs-macros-plugin==1.3.7',
|
|
129
|
-
'mkdocs-material==9.6.
|
|
136
|
+
'mkdocs-material==9.6.11',
|
|
130
137
|
'mkdocs-minify-html-plugin==0.3.1',
|
|
131
|
-
'mkdocstrings[crystal,python]==0.29.
|
|
132
|
-
'mkdocstrings-python==1.16.
|
|
138
|
+
'mkdocstrings[crystal,python]==0.29.1',
|
|
139
|
+
'mkdocstrings-python==1.16.10'
|
|
133
140
|
]
|
|
134
141
|
|
|
135
142
|
[project.scripts]
|
|
@@ -102,12 +102,12 @@ def generate_nested_config(
|
|
|
102
102
|
with open(
|
|
103
103
|
config_file_or_env_path, "w", encoding="utf-8", newline="\n"
|
|
104
104
|
) as f:
|
|
105
|
-
json.dump(
|
|
105
|
+
json.dump(llm_config, f, ensure_ascii=False, indent=4)
|
|
106
106
|
nested_config = {
|
|
107
107
|
"autobuild_init_config": {
|
|
108
108
|
"config_file_or_env": config_file_or_env_name,
|
|
109
|
-
"builder_model": llm_config["model"],
|
|
110
|
-
"agent_model": llm_config["model"],
|
|
109
|
+
"builder_model": llm_config["config_list"][0]["model"],
|
|
110
|
+
"agent_model": llm_config["config_list"][0]["model"],
|
|
111
111
|
},
|
|
112
112
|
"autobuild_build_config": get_auto_build_build_config(
|
|
113
113
|
agent, llm_config
|
|
@@ -140,20 +140,29 @@ def get_llm_config(
|
|
|
140
140
|
temperature: Optional[float] = 1
|
|
141
141
|
top_p: Optional[float] = 0.95
|
|
142
142
|
max_tokens: Optional[int] = 2048
|
|
143
|
+
config_dict: Dict[str, Any] = {}
|
|
143
144
|
if agent.data.model_ids:
|
|
144
145
|
waldiez_model = get_waldiez_model(agent.data.model_ids[0], all_models)
|
|
145
146
|
llm_config = waldiez_model.get_llm_config(skip_price=True)
|
|
146
147
|
for key in ["temperature", "top_p", "max_tokens"]:
|
|
147
148
|
if key not in llm_config:
|
|
148
149
|
llm_config[key] = None
|
|
149
|
-
|
|
150
|
+
temp = llm_config.pop("temperature", None)
|
|
151
|
+
config_dict = {
|
|
152
|
+
"config_list": [llm_config],
|
|
153
|
+
}
|
|
154
|
+
if temp is not None:
|
|
155
|
+
config_dict["temperature"] = temp
|
|
156
|
+
return config_dict
|
|
150
157
|
config_dict = {
|
|
151
158
|
"model": model_name,
|
|
152
|
-
"temperature": temperature,
|
|
153
159
|
"top_p": top_p,
|
|
154
160
|
"max_tokens": max_tokens,
|
|
155
161
|
}
|
|
156
|
-
return
|
|
162
|
+
return {
|
|
163
|
+
"config_list": [config_dict],
|
|
164
|
+
"temperature": temperature,
|
|
165
|
+
}
|
|
157
166
|
|
|
158
167
|
|
|
159
168
|
def get_auto_build_build_config(
|
|
@@ -195,8 +204,8 @@ def get_auto_build_build_config(
|
|
|
195
204
|
return {
|
|
196
205
|
"default_llm_config": {
|
|
197
206
|
"temperature": llm_config["temperature"],
|
|
198
|
-
"top_p": llm_config["top_p"],
|
|
199
|
-
"max_tokens": llm_config["max_tokens"],
|
|
207
|
+
"top_p": llm_config["config_list"][0]["top_p"],
|
|
208
|
+
"max_tokens": llm_config["config_list"][0]["max_tokens"],
|
|
200
209
|
},
|
|
201
210
|
"code_execution_config": code_execution_config,
|
|
202
211
|
"coding": coding,
|
|
@@ -92,9 +92,11 @@ def get_agent_llm_config_arg(
|
|
|
92
92
|
content = f"{tab}llm_config=" + "{\n"
|
|
93
93
|
content += f'{tab} "config_list": ['
|
|
94
94
|
got_at_least_one_model = False
|
|
95
|
+
temperature: Optional[float] = None
|
|
95
96
|
for model_id in agent.data.model_ids:
|
|
96
97
|
model = next((m for m in all_models if m.id == model_id), None)
|
|
97
98
|
if model is not None:
|
|
99
|
+
temperature = model.data.temperature
|
|
98
100
|
model_name = model_names[model_id]
|
|
99
101
|
content += "\n" + f"{tab} {model_name}_llm_config,"
|
|
100
102
|
got_at_least_one_model = True
|
|
@@ -102,6 +104,8 @@ def get_agent_llm_config_arg(
|
|
|
102
104
|
return f"{tab}llm_config=False," + "\n"
|
|
103
105
|
content += "\n" + f"{tab} ]," + "\n"
|
|
104
106
|
content += f'{tab} "cache_seed": {cache_seed},' + "\n"
|
|
107
|
+
if temperature is not None:
|
|
108
|
+
content += f'{tab} "temperature": {temperature},' + "\n"
|
|
105
109
|
content += tab + "},\n"
|
|
106
110
|
return content
|
|
107
111
|
|
|
@@ -203,7 +203,9 @@ class WaldiezRunner:
|
|
|
203
203
|
"NOTE: If new packages were added and you are using Jupyter, "
|
|
204
204
|
"you might need to restart the kernel."
|
|
205
205
|
)
|
|
206
|
-
results: Union[
|
|
206
|
+
results: Union[
|
|
207
|
+
"ChatResult", List["ChatResult"], Dict[int, "ChatResult"]
|
|
208
|
+
] = []
|
|
207
209
|
with chdir(to=temp_dir):
|
|
208
210
|
self._exporter.export(Path(file_name))
|
|
209
211
|
spec = importlib.util.spec_from_file_location(
|
|
@@ -249,7 +251,9 @@ class WaldiezRunner:
|
|
|
249
251
|
"NOTE: If new packages were added and you are using Jupyter, "
|
|
250
252
|
"you might need to restart the kernel."
|
|
251
253
|
)
|
|
252
|
-
results: Union[
|
|
254
|
+
results: Union[
|
|
255
|
+
"ChatResult", List["ChatResult"], Dict[int, "ChatResult"]
|
|
256
|
+
] = []
|
|
253
257
|
async with a_chdir(to=temp_dir):
|
|
254
258
|
self._exporter.export(Path(file_name))
|
|
255
259
|
spec = importlib.util.spec_from_file_location(
|
|
@@ -279,7 +283,7 @@ class WaldiezRunner:
|
|
|
279
283
|
output_path: Optional[Union[str, Path]] = None,
|
|
280
284
|
uploads_root: Optional[Union[str, Path]] = None,
|
|
281
285
|
skip_mmd: bool = False,
|
|
282
|
-
) -> Union["ChatResult", List["ChatResult"]]:
|
|
286
|
+
) -> Union["ChatResult", List["ChatResult"], Dict[int, "ChatResult"]]:
|
|
283
287
|
"""Run the Waldiez workflow.
|
|
284
288
|
|
|
285
289
|
Parameters
|
|
@@ -293,7 +297,7 @@ class WaldiezRunner:
|
|
|
293
297
|
|
|
294
298
|
Returns
|
|
295
299
|
-------
|
|
296
|
-
Union[ChatResult, List[ChatResult]]
|
|
300
|
+
Union["ChatResult", List["ChatResult"], Dict[int, "ChatResult"]]
|
|
297
301
|
The result(s) of the chat(s).
|
|
298
302
|
|
|
299
303
|
Raises
|
|
@@ -9,6 +9,7 @@ Highly recommended to be run in a virtual environment.
|
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
11
|
import os
|
|
12
|
+
import platform
|
|
12
13
|
import shutil
|
|
13
14
|
import site
|
|
14
15
|
import subprocess
|
|
@@ -121,7 +122,8 @@ def download_sqlite_amalgamation() -> str:
|
|
|
121
122
|
os.remove(zip_path)
|
|
122
123
|
|
|
123
124
|
# Return the path to the extracted source code
|
|
124
|
-
|
|
125
|
+
folder_name = SQLITE_URL.rsplit("/", 1)[-1].split(".")[0]
|
|
126
|
+
return os.path.join(extract_path, folder_name)
|
|
125
127
|
|
|
126
128
|
|
|
127
129
|
def rename_package_name(pysqlite3_dir: str) -> None:
|
|
@@ -206,7 +208,9 @@ def check_pysqlite3() -> None:
|
|
|
206
208
|
import pysqlite3 # type: ignore[unused-ignore, import-untyped, import-not-found] # noqa
|
|
207
209
|
except ImportError:
|
|
208
210
|
print("pysqlite3 not found or cannot be imported.")
|
|
209
|
-
|
|
211
|
+
# and not arm64
|
|
212
|
+
is_arm = "arm" in platform.machine().lower()
|
|
213
|
+
if not is_arm and platform.system() == "Linux":
|
|
210
214
|
pip_install("pysqlite3-binary")
|
|
211
215
|
else:
|
|
212
216
|
# Uninstall pysqlite3-binary if it is already installed
|
|
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
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/captain_agent/captain_agent_lib_entry.py
RENAMED
|
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
|
{waldiez-0.4.2 → waldiez-0.4.3}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py
RENAMED
|
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
|
|
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
|
|
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
|