waldiez 0.4.9__tar.gz → 0.5.0__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.9 → waldiez-0.5.0}/.gitignore +1 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/PKG-INFO +39 -113
- {waldiez-0.4.9 → waldiez-0.5.0}/README.md +0 -74
- {waldiez-0.4.9 → waldiez-0.5.0}/pyproject.toml +43 -40
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/__init__.py +1 -2
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/_version.py +1 -1
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/cli.py +65 -58
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporter.py +64 -9
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/group_manager_agent_extas.py +1 -1
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/context.py +12 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/flow_extras.py +2 -14
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/types.py +21 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/exporter.py +4 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/factory.py +16 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/orchestrator.py +12 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/utils/__init__.py +2 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/utils/common.py +96 -2
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/utils/logging.py +5 -6
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/mqtt.py +7 -3
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/structured.py +5 -1
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/method_utils.py +1 -1
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/tool/tool.py +2 -1
- waldiez-0.5.0/waldiez/runner.py +496 -0
- waldiez-0.5.0/waldiez/running/__init__.py +13 -0
- waldiez-0.5.0/waldiez/running/base_runner.py +907 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/running/environment.py +74 -0
- waldiez-0.5.0/waldiez/running/import_runner.py +424 -0
- waldiez-0.5.0/waldiez/running/patch_io_stream.py +208 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/running/post_run.py +26 -24
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/running/pre_run.py +2 -46
- waldiez-0.5.0/waldiez/running/protocol.py +281 -0
- waldiez-0.5.0/waldiez/running/run_results.py +22 -0
- waldiez-0.5.0/waldiez/running/subprocess_runner.py +100 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/utils/__init__.py +0 -4
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/utils/version.py +4 -2
- waldiez-0.4.9/waldiez/runner.py +0 -415
- waldiez-0.4.9/waldiez/running/__init__.py +0 -41
- waldiez-0.4.9/waldiez/utils/flaml_warnings.py +0 -17
- {waldiez-0.4.9 → waldiez-0.5.0}/LICENSE +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/NOTICE.md +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/__main__.py +0 -0
- {waldiez-0.4.9/waldiez/utils → waldiez-0.5.0/waldiez}/cli_extras/__init__.py +0 -0
- {waldiez-0.4.9/waldiez/utils → waldiez-0.5.0/waldiez}/cli_extras/jupyter.py +0 -0
- {waldiez-0.4.9/waldiez/utils → waldiez-0.5.0/waldiez}/cli_extras/runner.py +0 -0
- {waldiez-0.4.9/waldiez/utils → waldiez-0.5.0/waldiez}/cli_extras/studio.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/code_execution.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/exporter.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/captain_agent_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/group/target.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/group_member_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/handoffs/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/handoffs/after_work.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/handoffs/available.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/handoffs/condition.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/handoffs/handoff.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/handoffs/target.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/rag/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/rag/chroma_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/rag/mongo_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/rag/pgvector_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/rag/qdrant_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/rag/vector_db_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/rag_user_proxy_agent_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/extras/reasoning_agent_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/factory.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/processor.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/system_message.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/agent/termination.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/exporter.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/factory.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/processor.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/utils/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/utils/common.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/utils/group.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/utils/nested.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/utils/sequential.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/chats/utils/single.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/constants.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/content.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/enums.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/errors.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/exporter.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/exporters.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/agent_extras/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/agent_extras/captain_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/agent_extras/group_manager_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/agent_extras/rag_user_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/agent_extras/reasoning_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/agent_extras/standard_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/base.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/chat_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/model_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/path_resolver.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/serializer.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/extras/tool_extras.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/protocols.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/result.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/utils/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/utils/comment.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/utils/llm_config.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/core/validation.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/execution_generator.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/file_generator.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/merger.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/utils/importing.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/flow/utils/linting.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/models/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/models/exporter.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/models/factory.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/models/processor.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/tools/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/tools/exporter.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/tools/factory.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/tools/processor.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/exporting/tools/registration.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/_ws.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/base.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/constants.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/content/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/content/audio.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/content/base.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/content/file.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/content/image.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/content/text.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/content/video.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/user_input.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/models/user_response.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/redis.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/utils.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/io/ws.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/logger.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/agent.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/agent_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/agent_type.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/code_execution.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/human_input_mode.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/linked_tool.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/nested_chat.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/termination_message.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agent/update_system_message.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/agents.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/assistant/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/assistant/assistant.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/assistant/assistant_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/captain/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/captain/captain_agent.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/captain/captain_agent_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/captain/captain_agent_lib_entry.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/extra_requirements.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/group_manager/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/group_manager/group_manager.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/group_manager/group_manager_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/group_manager/speakers.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/rag_user_proxy/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/rag_user_proxy/rag_user_proxy.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/rag_user_proxy/rag_user_proxy_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/rag_user_proxy/retrieve_config.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/rag_user_proxy/vector_db_config.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/reasoning/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/reasoning/reasoning_agent.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/reasoning/reasoning_agent_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/user_proxy/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/user_proxy/user_proxy.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/agents/user_proxy/user_proxy_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/chat/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/chat/chat.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/chat/chat_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/chat/chat_message.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/chat/chat_nested.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/chat/chat_summary.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/ag2_version.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/base.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/date_utils.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/dict_utils.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/handoff.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/id_generator.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/naming.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/common/waldiez_version.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/flow/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/flow/connection.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/flow/flow.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/flow/flow_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/flow/info.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/flow/naming.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/model/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/model/extra_requirements.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/model/model.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/model/model_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/tool/__init__.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/tool/extra_requirements.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/tool/tool_data.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/tool/tool_type.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/models/waldiez.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/py.typed +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/running/gen_seq_diagram.py +0 -0
- /waldiez-0.4.9/waldiez/running/util.py → /waldiez-0.5.0/waldiez/running/utils.py +0 -0
- {waldiez-0.4.9 → waldiez-0.5.0}/waldiez/utils/conflict_checker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waldiez
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Dynamic: Keywords
|
|
5
5
|
Summary: Make AG2 Agents Collaborate: Drag, Drop, and Orchestrate with Waldiez.
|
|
6
6
|
Project-URL: Homepage, https://waldiez.io
|
|
@@ -27,13 +27,13 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
27
27
|
Classifier: Topic :: Software Development :: Code Generators
|
|
28
28
|
Classifier: Typing :: Typed
|
|
29
29
|
Requires-Python: <3.14,>=3.10
|
|
30
|
-
Requires-Dist: ag2[openai]==0.9.
|
|
30
|
+
Requires-Dist: ag2[openai]==0.9.3
|
|
31
31
|
Requires-Dist: aiocsv==1.3.2
|
|
32
32
|
Requires-Dist: aiofiles==24.1.0
|
|
33
33
|
Requires-Dist: aiosqlite==0.21.0
|
|
34
34
|
Requires-Dist: asyncer==0.0.8
|
|
35
35
|
Requires-Dist: click<8.2
|
|
36
|
-
Requires-Dist: graphviz<=0.
|
|
36
|
+
Requires-Dist: graphviz<=0.21
|
|
37
37
|
Requires-Dist: httpx<1
|
|
38
38
|
Requires-Dist: jupytext
|
|
39
39
|
Requires-Dist: nest-asyncio==1.6.0
|
|
@@ -46,24 +46,24 @@ Requires-Dist: pydantic<3,>=2.10.2
|
|
|
46
46
|
Requires-Dist: rpds-py==0.25.1
|
|
47
47
|
Requires-Dist: typer<1,>=0.9.0
|
|
48
48
|
Provides-Extra: ag2-extras
|
|
49
|
-
Requires-Dist: ag2[anthropic]==0.9.
|
|
50
|
-
Requires-Dist: ag2[bedrock]==0.9.
|
|
51
|
-
Requires-Dist: ag2[cohere]==0.9.
|
|
52
|
-
Requires-Dist: ag2[gemini]==0.9.
|
|
53
|
-
Requires-Dist: ag2[gemini]==0.9.
|
|
54
|
-
Requires-Dist: ag2[groq]==0.9.
|
|
55
|
-
Requires-Dist: ag2[interop-crewai]==0.9.
|
|
56
|
-
Requires-Dist: ag2[interop-langchain]==0.9.
|
|
57
|
-
Requires-Dist: ag2[lmm]==0.9.
|
|
58
|
-
Requires-Dist: ag2[mistral]==0.9.
|
|
59
|
-
Requires-Dist: ag2[neo4j]==0.9.
|
|
60
|
-
Requires-Dist: ag2[neo4j]==0.9.
|
|
61
|
-
Requires-Dist: ag2[ollama]==0.9.
|
|
62
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
63
|
-
Requires-Dist: ag2[together]==0.9.
|
|
64
|
-
Requires-Dist: ag2[together]==0.9.
|
|
65
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
66
|
-
Requires-Dist: ag2[websurfer]==0.9.
|
|
49
|
+
Requires-Dist: ag2[anthropic]==0.9.3; extra == 'ag2-extras'
|
|
50
|
+
Requires-Dist: ag2[bedrock]==0.9.3; extra == 'ag2-extras'
|
|
51
|
+
Requires-Dist: ag2[cohere]==0.9.3; extra == 'ag2-extras'
|
|
52
|
+
Requires-Dist: ag2[gemini]==0.9.3; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
53
|
+
Requires-Dist: ag2[gemini]==0.9.3; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
54
|
+
Requires-Dist: ag2[groq]==0.9.3; extra == 'ag2-extras'
|
|
55
|
+
Requires-Dist: ag2[interop-crewai]==0.9.3; extra == 'ag2-extras'
|
|
56
|
+
Requires-Dist: ag2[interop-langchain]==0.9.3; extra == 'ag2-extras'
|
|
57
|
+
Requires-Dist: ag2[lmm]==0.9.3; extra == 'ag2-extras'
|
|
58
|
+
Requires-Dist: ag2[mistral]==0.9.3; extra == 'ag2-extras'
|
|
59
|
+
Requires-Dist: ag2[neo4j]==0.9.3; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
60
|
+
Requires-Dist: ag2[neo4j]==0.9.3; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
61
|
+
Requires-Dist: ag2[ollama]==0.9.3; extra == 'ag2-extras'
|
|
62
|
+
Requires-Dist: ag2[redis]==0.9.3; extra == 'ag2-extras'
|
|
63
|
+
Requires-Dist: ag2[together]==0.9.3; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
64
|
+
Requires-Dist: ag2[together]==0.9.3; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
65
|
+
Requires-Dist: ag2[websockets]==0.9.3; extra == 'ag2-extras'
|
|
66
|
+
Requires-Dist: ag2[websurfer]==0.9.3; extra == 'ag2-extras'
|
|
67
67
|
Requires-Dist: beautifulsoup4; extra == 'ag2-extras'
|
|
68
68
|
Requires-Dist: chromadb>=0.5.10; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
69
69
|
Requires-Dist: chromadb>=0.5.10; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
@@ -80,7 +80,7 @@ Requires-Dist: ipython; extra == 'ag2-extras'
|
|
|
80
80
|
Requires-Dist: langchain-community<1,>=0.3.12; extra == 'ag2-extras'
|
|
81
81
|
Requires-Dist: litellm; extra == 'ag2-extras'
|
|
82
82
|
Requires-Dist: markdownify; extra == 'ag2-extras'
|
|
83
|
-
Requires-Dist: mcp<
|
|
83
|
+
Requires-Dist: mcp<2,>=1.4.0; extra == 'ag2-extras'
|
|
84
84
|
Requires-Dist: mistralai>=1.8.1; extra == 'ag2-extras'
|
|
85
85
|
Requires-Dist: networkx; (python_version < '3.11') and extra == 'ag2-extras'
|
|
86
86
|
Requires-Dist: networkx>=3.5; (python_version >= '3.11') and extra == 'ag2-extras'
|
|
@@ -103,13 +103,13 @@ Requires-Dist: sentence-transformers; (sys_platform == 'linux') and extra == 'ag
|
|
|
103
103
|
Requires-Dist: weaviate-client<5,>=4; extra == 'ag2-extras'
|
|
104
104
|
Requires-Dist: wikipedia-api<1.0,>=0.8.1; extra == 'ag2-extras'
|
|
105
105
|
Provides-Extra: dev
|
|
106
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
107
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
106
|
+
Requires-Dist: ag2[redis]==0.9.3; extra == 'dev'
|
|
107
|
+
Requires-Dist: ag2[websockets]==0.9.3; extra == 'dev'
|
|
108
108
|
Requires-Dist: autoflake==2.3.1; extra == 'dev'
|
|
109
|
-
Requires-Dist: bandit==1.8.
|
|
109
|
+
Requires-Dist: bandit==1.8.5; extra == 'dev'
|
|
110
110
|
Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
|
|
111
111
|
Requires-Dist: build==1.2.2.post1; extra == 'dev'
|
|
112
|
-
Requires-Dist: fakeredis
|
|
112
|
+
Requires-Dist: fakeredis<=3.30.0,>=2.28.1; extra == 'dev'
|
|
113
113
|
Requires-Dist: fastjsonschema>=2.21; extra == 'dev'
|
|
114
114
|
Requires-Dist: flake8==7.2.0; extra == 'dev'
|
|
115
115
|
Requires-Dist: hatchling==1.27.0; extra == 'dev'
|
|
@@ -117,7 +117,7 @@ Requires-Dist: jsonschema==4.24.0; extra == 'dev'
|
|
|
117
117
|
Requires-Dist: jupyter-server==2.16.0; extra == 'dev'
|
|
118
118
|
Requires-Dist: jupyterlab<5.0,>=4.4.0; extra == 'dev'
|
|
119
119
|
Requires-Dist: mypy-extensions>=1.1.0; extra == 'dev'
|
|
120
|
-
Requires-Dist: mypy==1.16.
|
|
120
|
+
Requires-Dist: mypy==1.16.1; extra == 'dev'
|
|
121
121
|
Requires-Dist: nbclient>=0.10.2; extra == 'dev'
|
|
122
122
|
Requires-Dist: nbconvert>=7.16.6; extra == 'dev'
|
|
123
123
|
Requires-Dist: nbformat>=5.10.4; extra == 'dev'
|
|
@@ -129,12 +129,12 @@ Requires-Dist: pre-commit==4.2.0; extra == 'dev'
|
|
|
129
129
|
Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
|
|
130
130
|
Requires-Dist: pylint==3.3.7; extra == 'dev'
|
|
131
131
|
Requires-Dist: python-dotenv==1.1.0; extra == 'dev'
|
|
132
|
-
Requires-Dist: ruff==0.
|
|
132
|
+
Requires-Dist: ruff==0.12.0; extra == 'dev'
|
|
133
133
|
Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
|
|
134
134
|
Requires-Dist: types-jsonschema==4.24.0.20250528; extra == 'dev'
|
|
135
135
|
Requires-Dist: types-pyyaml==6.0.12.20250516; extra == 'dev'
|
|
136
136
|
Requires-Dist: types-redis==4.6.0.20241004; extra == 'dev'
|
|
137
|
-
Requires-Dist: types-requests==2.32.
|
|
137
|
+
Requires-Dist: types-requests==2.32.4.20250611; extra == 'dev'
|
|
138
138
|
Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
|
|
139
139
|
Requires-Dist: watchdog==6.0.0; extra == 'dev'
|
|
140
140
|
Requires-Dist: yamllint==1.37.1; extra == 'dev'
|
|
@@ -157,29 +157,29 @@ Requires-Dist: natsort==8.4.0; extra == 'docs'
|
|
|
157
157
|
Provides-Extra: jupyter
|
|
158
158
|
Requires-Dist: jupyter-server==2.16.0; extra == 'jupyter'
|
|
159
159
|
Requires-Dist: jupyterlab<5.0,>=4.3.0; extra == 'jupyter'
|
|
160
|
-
Requires-Dist: waldiez-jupyter==0.
|
|
160
|
+
Requires-Dist: waldiez-jupyter==0.5.0; extra == 'jupyter'
|
|
161
161
|
Provides-Extra: mqtt
|
|
162
162
|
Requires-Dist: paho-mqtt<3.0,>=2.1.0; extra == 'mqtt'
|
|
163
163
|
Provides-Extra: redis
|
|
164
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
164
|
+
Requires-Dist: ag2[redis]==0.9.3; extra == 'redis'
|
|
165
165
|
Provides-Extra: runner
|
|
166
|
-
Requires-Dist: waldiez-runner==0.
|
|
166
|
+
Requires-Dist: waldiez-runner==0.5.0; (python_version >= '3.11') and extra == 'runner'
|
|
167
167
|
Provides-Extra: studio
|
|
168
|
-
Requires-Dist: waldiez-studio==0.
|
|
168
|
+
Requires-Dist: waldiez-studio==0.5.0; extra == 'studio'
|
|
169
169
|
Provides-Extra: test
|
|
170
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
171
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
172
|
-
Requires-Dist: fakeredis
|
|
170
|
+
Requires-Dist: ag2[redis]==0.9.3; extra == 'test'
|
|
171
|
+
Requires-Dist: ag2[websockets]==0.9.3; extra == 'test'
|
|
172
|
+
Requires-Dist: fakeredis<=3.30.0,>=2.28.1; extra == 'test'
|
|
173
173
|
Requires-Dist: paho-mqtt<3.0,>=2.1.0; extra == 'test'
|
|
174
174
|
Requires-Dist: pytest-asyncio==1.0.0; extra == 'test'
|
|
175
|
-
Requires-Dist: pytest-cov==6.
|
|
175
|
+
Requires-Dist: pytest-cov==6.2.1; extra == 'test'
|
|
176
176
|
Requires-Dist: pytest-html==4.1.1; extra == 'test'
|
|
177
177
|
Requires-Dist: pytest-sugar==1.0.0; extra == 'test'
|
|
178
178
|
Requires-Dist: pytest-timeout==2.4.0; extra == 'test'
|
|
179
179
|
Requires-Dist: pytest-xdist==3.7.0; extra == 'test'
|
|
180
|
-
Requires-Dist: pytest==8.4.
|
|
180
|
+
Requires-Dist: pytest==8.4.1; extra == 'test'
|
|
181
181
|
Provides-Extra: websockets
|
|
182
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
182
|
+
Requires-Dist: ag2[websockets]==0.9.3; extra == 'websockets'
|
|
183
183
|
Description-Content-Type: text/markdown
|
|
184
184
|
|
|
185
185
|
# Waldiez
|
|
@@ -220,80 +220,6 @@ If you’re looking for the React component, please refer to [README.npm](https:
|
|
|
220
220
|
|
|
221
221
|
> Note: The React component is only for creating and editing flows — it is not needed to convert or run flows (that functionality is handled by the Python package).
|
|
222
222
|
|
|
223
|
-
To include waldiez on your website using CDN, here is a simple example:
|
|
224
|
-
|
|
225
|
-
```html
|
|
226
|
-
<!doctype html>
|
|
227
|
-
<html lang="en">
|
|
228
|
-
<head>
|
|
229
|
-
<meta charset="UTF-8" />
|
|
230
|
-
<script type="importmap">
|
|
231
|
-
{
|
|
232
|
-
"imports": {
|
|
233
|
-
"react": "https://esm.sh/react@19.1.0",
|
|
234
|
-
"react-dom/client": "https://esm.sh/react-dom@19.1.0/client",
|
|
235
|
-
"@waldiez/react": "https://esm.sh/@waldiez/react"
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
</script>
|
|
239
|
-
<style>
|
|
240
|
-
body {
|
|
241
|
-
margin: 0;
|
|
242
|
-
padding: 0;
|
|
243
|
-
justify-content: center;
|
|
244
|
-
background-color: white;
|
|
245
|
-
color: black;
|
|
246
|
-
}
|
|
247
|
-
@media (prefers-color-scheme: dark) {
|
|
248
|
-
body {
|
|
249
|
-
background-color: black;
|
|
250
|
-
color: white;
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
#loading {
|
|
254
|
-
width: 100vw;
|
|
255
|
-
height: 100vh;
|
|
256
|
-
padding: 0;
|
|
257
|
-
margin: 0;
|
|
258
|
-
display: flex;
|
|
259
|
-
align-items: center;
|
|
260
|
-
}
|
|
261
|
-
#root {
|
|
262
|
-
display: flex;
|
|
263
|
-
flex-direction: column;
|
|
264
|
-
width: 100vw;
|
|
265
|
-
height: 100vh;
|
|
266
|
-
}
|
|
267
|
-
#waldiez-root {
|
|
268
|
-
position: relative;
|
|
269
|
-
width: 80vw;
|
|
270
|
-
height: 80vh;
|
|
271
|
-
margin: auto;
|
|
272
|
-
}
|
|
273
|
-
</style>
|
|
274
|
-
<link rel="stylesheet" href="https://esm.sh/@waldiez/react/dist/@waldiez.css">
|
|
275
|
-
</head>
|
|
276
|
-
<body>
|
|
277
|
-
<div id="root"></div>
|
|
278
|
-
<div id="loading">
|
|
279
|
-
Loading...
|
|
280
|
-
</div>
|
|
281
|
-
<script type="module" src="https://esm.sh/tsx"></script>
|
|
282
|
-
<script type="text/babel">
|
|
283
|
-
import { createRoot } from "react-dom/client"
|
|
284
|
-
import { Waldiez } from "@waldiez/react";
|
|
285
|
-
const root = document.getElementById("root");
|
|
286
|
-
document.getElementById("loading").style.display = "none";
|
|
287
|
-
createRoot(root).render(
|
|
288
|
-
<div id="waldiez-root">
|
|
289
|
-
<Waldiez />
|
|
290
|
-
</div>
|
|
291
|
-
)
|
|
292
|
-
</script>
|
|
293
|
-
</body>
|
|
294
|
-
</html>
|
|
295
|
-
```
|
|
296
|
-
|
|
297
223
|
To add the waldiez library to your app:
|
|
298
224
|
|
|
299
225
|
```shell
|
|
@@ -36,80 +36,6 @@ If you’re looking for the React component, please refer to [README.npm](https:
|
|
|
36
36
|
|
|
37
37
|
> Note: The React component is only for creating and editing flows — it is not needed to convert or run flows (that functionality is handled by the Python package).
|
|
38
38
|
|
|
39
|
-
To include waldiez on your website using CDN, here is a simple example:
|
|
40
|
-
|
|
41
|
-
```html
|
|
42
|
-
<!doctype html>
|
|
43
|
-
<html lang="en">
|
|
44
|
-
<head>
|
|
45
|
-
<meta charset="UTF-8" />
|
|
46
|
-
<script type="importmap">
|
|
47
|
-
{
|
|
48
|
-
"imports": {
|
|
49
|
-
"react": "https://esm.sh/react@19.1.0",
|
|
50
|
-
"react-dom/client": "https://esm.sh/react-dom@19.1.0/client",
|
|
51
|
-
"@waldiez/react": "https://esm.sh/@waldiez/react"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
</script>
|
|
55
|
-
<style>
|
|
56
|
-
body {
|
|
57
|
-
margin: 0;
|
|
58
|
-
padding: 0;
|
|
59
|
-
justify-content: center;
|
|
60
|
-
background-color: white;
|
|
61
|
-
color: black;
|
|
62
|
-
}
|
|
63
|
-
@media (prefers-color-scheme: dark) {
|
|
64
|
-
body {
|
|
65
|
-
background-color: black;
|
|
66
|
-
color: white;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
#loading {
|
|
70
|
-
width: 100vw;
|
|
71
|
-
height: 100vh;
|
|
72
|
-
padding: 0;
|
|
73
|
-
margin: 0;
|
|
74
|
-
display: flex;
|
|
75
|
-
align-items: center;
|
|
76
|
-
}
|
|
77
|
-
#root {
|
|
78
|
-
display: flex;
|
|
79
|
-
flex-direction: column;
|
|
80
|
-
width: 100vw;
|
|
81
|
-
height: 100vh;
|
|
82
|
-
}
|
|
83
|
-
#waldiez-root {
|
|
84
|
-
position: relative;
|
|
85
|
-
width: 80vw;
|
|
86
|
-
height: 80vh;
|
|
87
|
-
margin: auto;
|
|
88
|
-
}
|
|
89
|
-
</style>
|
|
90
|
-
<link rel="stylesheet" href="https://esm.sh/@waldiez/react/dist/@waldiez.css">
|
|
91
|
-
</head>
|
|
92
|
-
<body>
|
|
93
|
-
<div id="root"></div>
|
|
94
|
-
<div id="loading">
|
|
95
|
-
Loading...
|
|
96
|
-
</div>
|
|
97
|
-
<script type="module" src="https://esm.sh/tsx"></script>
|
|
98
|
-
<script type="text/babel">
|
|
99
|
-
import { createRoot } from "react-dom/client"
|
|
100
|
-
import { Waldiez } from "@waldiez/react";
|
|
101
|
-
const root = document.getElementById("root");
|
|
102
|
-
document.getElementById("loading").style.display = "none";
|
|
103
|
-
createRoot(root).render(
|
|
104
|
-
<div id="waldiez-root">
|
|
105
|
-
<Waldiez />
|
|
106
|
-
</div>
|
|
107
|
-
)
|
|
108
|
-
</script>
|
|
109
|
-
</body>
|
|
110
|
-
</html>
|
|
111
|
-
```
|
|
112
|
-
|
|
113
39
|
To add the waldiez library to your app:
|
|
114
40
|
|
|
115
41
|
```shell
|
|
@@ -27,14 +27,14 @@ classifiers = [
|
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
dependencies = [
|
|
30
|
-
"ag2[openai]==0.9.
|
|
30
|
+
"ag2[openai]==0.9.3",
|
|
31
31
|
"aiocsv==1.3.2",
|
|
32
32
|
"aiofiles==24.1.0",
|
|
33
33
|
"aiosqlite==0.21.0",
|
|
34
34
|
"asyncer==0.0.8",
|
|
35
35
|
"numpy<=2.3.0",
|
|
36
36
|
"nest_asyncio==1.6.0",
|
|
37
|
-
"graphviz<=0.
|
|
37
|
+
"graphviz<=0.21",
|
|
38
38
|
"pandas>=2",
|
|
39
39
|
"pillow",
|
|
40
40
|
"pip>=25",
|
|
@@ -42,7 +42,7 @@ dependencies = [
|
|
|
42
42
|
"parso==0.8.4",
|
|
43
43
|
"rpds-py==0.25.1",
|
|
44
44
|
"pydantic>=2.10.2,<3",
|
|
45
|
-
# ag2[together]==0.9.
|
|
45
|
+
# ag2[together]==0.9.3 depends on together>=1.2
|
|
46
46
|
# together>=1.2 depends on typer>=0.9,<0.16
|
|
47
47
|
"typer>=0.9.0,<1",
|
|
48
48
|
"click<8.2",
|
|
@@ -71,57 +71,57 @@ waldiez = "waldiez.cli:app"
|
|
|
71
71
|
[project.optional-dependencies]
|
|
72
72
|
# stream-io-extensions: redis, websockets, mqtt
|
|
73
73
|
redis = [
|
|
74
|
-
"ag2[redis]==0.9.
|
|
74
|
+
"ag2[redis]==0.9.3",
|
|
75
75
|
]
|
|
76
76
|
websockets = [
|
|
77
|
-
"ag2[websockets]==0.9.
|
|
77
|
+
"ag2[websockets]==0.9.3",
|
|
78
78
|
]
|
|
79
79
|
mqtt = [
|
|
80
80
|
"paho-mqtt>=2.1.0,<3.0",
|
|
81
81
|
]
|
|
82
82
|
# jupyterlab extension
|
|
83
83
|
jupyter = [
|
|
84
|
-
"waldiez_jupyter==0.
|
|
84
|
+
"waldiez_jupyter==0.5.0",
|
|
85
85
|
"jupyterlab>=4.3.0,<5.0",
|
|
86
86
|
"jupyter_server==2.16.0",
|
|
87
87
|
]
|
|
88
88
|
runner = [
|
|
89
|
-
"waldiez_runner==0.
|
|
89
|
+
"waldiez_runner==0.5.0; python_version >= '3.11'",
|
|
90
90
|
]
|
|
91
91
|
studio = [
|
|
92
|
-
"waldiez_studio==0.
|
|
92
|
+
"waldiez_studio==0.5.0",
|
|
93
93
|
]
|
|
94
94
|
ag2_extras = [
|
|
95
95
|
# models
|
|
96
|
-
"ag2[anthropic]==0.9.
|
|
97
|
-
"ag2[bedrock]==0.9.
|
|
98
|
-
"ag2[cohere]==0.9.
|
|
99
|
-
"ag2[gemini]==0.9.
|
|
100
|
-
"ag2[gemini]==0.9.
|
|
101
|
-
"ag2[groq]==0.9.
|
|
102
|
-
"ag2[lmm]==0.9.
|
|
103
|
-
"ag2[mistral]==0.9.
|
|
96
|
+
"ag2[anthropic]==0.9.3",
|
|
97
|
+
"ag2[bedrock]==0.9.3",
|
|
98
|
+
"ag2[cohere]==0.9.3",
|
|
99
|
+
"ag2[gemini]==0.9.3;sys_platform != 'win32'",
|
|
100
|
+
"ag2[gemini]==0.9.3;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
101
|
+
"ag2[groq]==0.9.3",
|
|
102
|
+
"ag2[lmm]==0.9.3",
|
|
103
|
+
"ag2[mistral]==0.9.3",
|
|
104
104
|
"mistralai>=1.8.1",
|
|
105
|
-
"ag2[ollama]==0.9.
|
|
106
|
-
"ag2[together]==0.9.
|
|
107
|
-
"ag2[together]==0.9.
|
|
105
|
+
"ag2[ollama]==0.9.3",
|
|
106
|
+
"ag2[together]==0.9.3;sys_platform != 'win32'",
|
|
107
|
+
"ag2[together]==0.9.3;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'", # utils
|
|
108
108
|
# utils
|
|
109
|
-
"ag2[websockets]==0.9.
|
|
110
|
-
"ag2[redis]==0.9.
|
|
109
|
+
"ag2[websockets]==0.9.3",
|
|
110
|
+
"ag2[redis]==0.9.3",
|
|
111
111
|
"crewai>=0.76,<1",
|
|
112
112
|
"opentelemetry-api>=1.34.0",
|
|
113
113
|
"opentelemetry-sdk>=1.34.0",
|
|
114
114
|
# "crewai-tools>=0.47.0;python_version >= '3.13'",
|
|
115
115
|
"crewai-tools<=0.46.0;python_version<'3.13'",
|
|
116
|
-
"ag2[interop-crewai]==0.9.
|
|
116
|
+
"ag2[interop-crewai]==0.9.3",
|
|
117
117
|
# "crewai>=0.126.0;python_version >= '3.13'",
|
|
118
118
|
# "crewai-tools>=0.47.0;python_version >= '3.13'",
|
|
119
119
|
"litellm",
|
|
120
120
|
"weaviate-client>=4,<5",
|
|
121
|
-
"ag2[interop-langchain]==0.9.
|
|
122
|
-
"ag2[neo4j]==0.9.
|
|
123
|
-
"ag2[neo4j]==0.9.
|
|
124
|
-
"ag2[websurfer]==0.9.
|
|
121
|
+
"ag2[interop-langchain]==0.9.3",
|
|
122
|
+
"ag2[neo4j]==0.9.3;sys_platform != 'win32'",
|
|
123
|
+
"ag2[neo4j]==0.9.3;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
124
|
+
"ag2[websurfer]==0.9.3",
|
|
125
125
|
"chromadb>=0.5.10;sys_platform != 'win32'",
|
|
126
126
|
"chromadb>=0.5.10;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
127
127
|
"pgvector>=0.4.0",
|
|
@@ -154,16 +154,16 @@ ag2_extras = [
|
|
|
154
154
|
"google-api-python-client>=2.163.0,<3.0",
|
|
155
155
|
"google-auth-httplib2>=0.2.0,<0.3",
|
|
156
156
|
"google-auth-oauthlib>=1.2.1,<2.0",
|
|
157
|
-
"mcp>=1.4.0,<
|
|
157
|
+
"mcp>=1.4.0,<2",
|
|
158
158
|
]
|
|
159
159
|
dev = [
|
|
160
|
-
"ag2[redis]==0.9.
|
|
161
|
-
"ag2[websockets]==0.9.
|
|
160
|
+
"ag2[redis]==0.9.3",
|
|
161
|
+
"ag2[websockets]==0.9.3",
|
|
162
162
|
"autoflake==2.3.1",
|
|
163
|
-
"bandit==1.8.
|
|
163
|
+
"bandit==1.8.5",
|
|
164
164
|
"black[jupyter]==25.1.0",
|
|
165
165
|
"build==1.2.2.post1",
|
|
166
|
-
"fakeredis>=2.28.1",
|
|
166
|
+
"fakeredis>=2.28.1,<=3.30.0",
|
|
167
167
|
"flake8==7.2.0",
|
|
168
168
|
"jsonschema==4.24.0",
|
|
169
169
|
"jupyterlab>=4.4.0,<5.0",
|
|
@@ -174,7 +174,7 @@ dev = [
|
|
|
174
174
|
"nbformat>=5.10.4",
|
|
175
175
|
"nbconvert>=7.16.6",
|
|
176
176
|
"hatchling==1.27.0",
|
|
177
|
-
"mypy==1.16.
|
|
177
|
+
"mypy==1.16.1",
|
|
178
178
|
"mypy-extensions>=1.1.0",
|
|
179
179
|
"paho-mqtt>=2.1.0,<3.0",
|
|
180
180
|
"pandas-stubs==2.2.3.250527",
|
|
@@ -183,12 +183,12 @@ dev = [
|
|
|
183
183
|
"pydocstyle==6.3.0",
|
|
184
184
|
"pylint==3.3.7",
|
|
185
185
|
"python-dotenv==1.1.0",
|
|
186
|
-
"ruff==0.
|
|
186
|
+
"ruff==0.12.0",
|
|
187
187
|
"types-pyyaml==6.0.12.20250516",
|
|
188
188
|
"types-jsonschema==4.24.0.20250528",
|
|
189
189
|
"types-redis==4.6.0.20241004",
|
|
190
190
|
"types-toml==0.10.8.20240310",
|
|
191
|
-
"types-requests==2.32.
|
|
191
|
+
"types-requests==2.32.4.20250611",
|
|
192
192
|
"toml==0.10.2; python_version <= '3.10'",
|
|
193
193
|
"watchdog==6.0.0",
|
|
194
194
|
"yamllint==1.37.1",
|
|
@@ -211,14 +211,13 @@ docs = [
|
|
|
211
211
|
"natsort==8.4.0",
|
|
212
212
|
]
|
|
213
213
|
test = [
|
|
214
|
-
"ag2[redis]==0.9.
|
|
215
|
-
"ag2[websockets]==0.9.
|
|
216
|
-
"fakeredis>=2.28.1",
|
|
214
|
+
"ag2[redis]==0.9.3",
|
|
215
|
+
"ag2[websockets]==0.9.3",
|
|
216
|
+
"fakeredis>=2.28.1,<=3.30.0",
|
|
217
217
|
"paho-mqtt>=2.1.0,<3.0",
|
|
218
|
-
|
|
219
|
-
"pytest==8.4.0",
|
|
218
|
+
"pytest==8.4.1",
|
|
220
219
|
"pytest-asyncio==1.0.0",
|
|
221
|
-
"pytest-cov==6.
|
|
220
|
+
"pytest-cov==6.2.1",
|
|
222
221
|
"pytest-html==4.1.1",
|
|
223
222
|
"pytest-sugar==1.0.0",
|
|
224
223
|
"pytest-timeout==2.4.0",
|
|
@@ -284,6 +283,10 @@ test-io = """
|
|
|
284
283
|
hatch run pre-test
|
|
285
284
|
pytest -c pyproject.toml --cov=waldiez/io --cov-branch --cov-report=term-missing:skip-covered -vv tests/io
|
|
286
285
|
"""
|
|
286
|
+
test-running = """
|
|
287
|
+
hatch run pre-test
|
|
288
|
+
pytest -c pyproject.toml --cov=waldiez/running --cov-branch --cov-report=term-missing:skip-covered -vv tests/running
|
|
289
|
+
"""
|
|
287
290
|
|
|
288
291
|
format-black = "black --config pyproject.toml waldiez tests scripts"
|
|
289
292
|
format-autoflake = "autoflake --in-place --remove-all-unused-imports --remove-unused-variables --recursive waldiez tests scripts"
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
from .exporter import WaldiezExporter
|
|
6
6
|
from .models import Waldiez
|
|
7
7
|
from .runner import WaldiezRunner
|
|
8
|
-
from .utils import check_conflicts
|
|
8
|
+
from .utils import check_conflicts
|
|
9
9
|
|
|
10
10
|
# flake8: noqa: F401
|
|
11
11
|
# pylint: disable=import-error,line-too-long
|
|
@@ -28,7 +28,6 @@ __waldiez_initialized = False
|
|
|
28
28
|
if not __waldiez_initialized:
|
|
29
29
|
__waldiez_initialized = True
|
|
30
30
|
check_conflicts()
|
|
31
|
-
check_flaml_warnings()
|
|
32
31
|
|
|
33
32
|
__all__ = [
|
|
34
33
|
"Waldiez",
|