waldiez 0.5.2__tar.gz → 0.5.4__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.5.2 → waldiez-0.5.4}/PKG-INFO +61 -63
- {waldiez-0.5.2 → waldiez-0.5.4}/pyproject.toml +141 -142
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/_version.py +1 -1
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/cli.py +5 -27
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporter.py +0 -13
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/exporter.py +38 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/__init__.py +2 -0
- waldiez-0.5.4/waldiez/exporting/agent/extras/doc_agent_extras.py +366 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/group_member_extras.py +3 -2
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/processor.py +113 -15
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/processor.py +2 -21
- waldiez-0.5.4/waldiez/exporting/chats/utils/common.py +112 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/utils/group.py +6 -3
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/utils/nested.py +1 -1
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/utils/sequential.py +25 -9
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/utils/single.py +8 -6
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/context.py +0 -12
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/agent_extras/standard_extras.py +3 -1
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/base.py +20 -17
- waldiez-0.5.4/waldiez/exporting/core/extras/path_resolver.py +91 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/serializer.py +16 -1
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/protocols.py +17 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/types.py +6 -9
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/execution_generator.py +56 -21
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/exporter.py +1 -4
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/factory.py +0 -9
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/file_generator.py +6 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/orchestrator.py +27 -21
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/utils/__init__.py +0 -2
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/utils/common.py +15 -96
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/utils/importing.py +4 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/mqtt.py +33 -14
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/redis.py +18 -13
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/structured.py +9 -4
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/utils.py +32 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/ws.py +8 -2
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/__init__.py +6 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/__init__.py +8 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/agent.py +136 -38
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/agent_type.py +3 -2
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agents.py +10 -0
- waldiez-0.5.4/waldiez/models/agents/doc_agent/__init__.py +13 -0
- waldiez-0.5.4/waldiez/models/agents/doc_agent/doc_agent.py +126 -0
- waldiez-0.5.4/waldiez/models/agents/doc_agent/doc_agent_data.py +149 -0
- waldiez-0.5.4/waldiez/models/agents/doc_agent/rag_query_engine.py +127 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/chat/chat_message.py +1 -1
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/flow/flow.py +13 -2
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/model/__init__.py +2 -2
- waldiez-0.5.4/waldiez/models/model/_aws.py +75 -0
- waldiez-0.5.4/waldiez/models/model/_llm.py +516 -0
- waldiez-0.5.4/waldiez/models/model/_price.py +30 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/model/model.py +45 -2
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/model/model_data.py +2 -83
- waldiez-0.5.4/waldiez/models/tool/predefined/_duckduckgo.py +123 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/predefined/_google.py +31 -9
- waldiez-0.5.4/waldiez/models/tool/predefined/_perplexity.py +161 -0
- waldiez-0.5.4/waldiez/models/tool/predefined/_searxng.py +152 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/predefined/_tavily.py +46 -9
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/predefined/_wikipedia.py +26 -6
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/predefined/_youtube.py +36 -8
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/predefined/registry.py +6 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/waldiez.py +12 -0
- waldiez-0.5.4/waldiez/runner.py +298 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/__init__.py +2 -4
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/base_runner.py +136 -118
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/environment.py +61 -17
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/post_run.py +70 -14
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/pre_run.py +42 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/protocol.py +42 -48
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/run_results.py +5 -5
- waldiez-0.5.4/waldiez/running/standard_runner.py +429 -0
- waldiez-0.5.4/waldiez/running/timeline_processor.py +1166 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/utils/version.py +12 -1
- waldiez-0.5.2/waldiez/exporting/chats/utils/common.py +0 -47
- waldiez-0.5.2/waldiez/exporting/core/extras/path_resolver.py +0 -93
- waldiez-0.5.2/waldiez/runner.py +0 -496
- waldiez-0.5.2/waldiez/running/import_runner.py +0 -424
- waldiez-0.5.2/waldiez/running/subprocess_runner.py +0 -100
- {waldiez-0.5.2 → waldiez-0.5.4}/.gitignore +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/LICENSE +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/NOTICE.md +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/README.md +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/__main__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/cli_extras/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/cli_extras/jupyter.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/cli_extras/runner.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/cli_extras/studio.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/code_execution.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/captain_agent_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/group/target.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/group_manager_agent_extas.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/handoffs/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/handoffs/after_work.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/handoffs/available.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/handoffs/condition.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/handoffs/handoff.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/handoffs/target.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/rag/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/rag/chroma_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/rag/mongo_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/rag/pgvector_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/rag/qdrant_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/rag/vector_db_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/rag_user_proxy_agent_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/extras/reasoning_agent_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/factory.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/system_message.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/agent/termination.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/exporter.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/factory.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/chats/utils/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/constants.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/content.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/enums.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/errors.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/exporter.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/exporters.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/agent_extras/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/agent_extras/captain_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/agent_extras/group_manager_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/agent_extras/rag_user_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/agent_extras/reasoning_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/chat_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/flow_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/model_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/extras/tool_extras.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/result.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/utils/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/utils/comment.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/utils/llm_config.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/core/validation.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/merger.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/utils/linting.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/flow/utils/logging.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/models/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/models/exporter.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/models/factory.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/models/processor.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/tools/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/tools/exporter.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/tools/factory.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/tools/processor.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/exporting/tools/registration.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/_ws.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/base.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/constants.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/content/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/content/audio.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/content/base.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/content/file.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/content/image.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/content/text.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/content/video.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/user_input.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/io/models/user_response.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/logger.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/agent_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/code_execution.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/human_input_mode.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/linked_tool.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/nested_chat.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/termination_message.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/agent/update_system_message.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/assistant/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/assistant/assistant.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/assistant/assistant_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/captain/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/captain/captain_agent.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/captain/captain_agent_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/captain/captain_agent_lib_entry.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/extra_requirements.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/group_manager/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/group_manager/group_manager.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/group_manager/group_manager_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/group_manager/speakers.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/rag_user_proxy/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/rag_user_proxy/rag_user_proxy.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/rag_user_proxy/rag_user_proxy_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/rag_user_proxy/retrieve_config.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/rag_user_proxy/vector_db_config.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/reasoning/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/reasoning/reasoning_agent.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/reasoning/reasoning_agent_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/user_proxy/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/user_proxy/user_proxy.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/agents/user_proxy/user_proxy_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/chat/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/chat/chat.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/chat/chat_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/chat/chat_nested.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/chat/chat_summary.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/ag2_version.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/base.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/date_utils.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/dict_utils.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/handoff.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/id_generator.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/method_utils.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/naming.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/common/waldiez_version.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/flow/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/flow/connection.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/flow/flow_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/flow/info.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/flow/naming.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/model/extra_requirements.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/extra_requirements.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/predefined/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/predefined/_config.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/predefined/protocol.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/tool.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/tool_data.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/models/tool/tool_type.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/py.typed +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/gen_seq_diagram.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/patch_io_stream.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/running/utils.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/utils/__init__.py +0 -0
- {waldiez-0.5.2 → waldiez-0.5.4}/waldiez/utils/conflict_checker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waldiez
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
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,7 +27,7 @@ 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.6
|
|
31
31
|
Requires-Dist: aiocsv==1.3.2
|
|
32
32
|
Requires-Dist: aiofiles==24.1.0
|
|
33
33
|
Requires-Dist: aiosqlite==0.21.0
|
|
@@ -41,53 +41,53 @@ Requires-Dist: numpy<=2.3.1
|
|
|
41
41
|
Requires-Dist: pandas>=2
|
|
42
42
|
Requires-Dist: parso==0.8.4
|
|
43
43
|
Requires-Dist: pillow
|
|
44
|
-
Requires-Dist: pip>=25
|
|
44
|
+
Requires-Dist: pip>=25.1.1
|
|
45
|
+
Requires-Dist: platformdirs==4.3.8
|
|
45
46
|
Requires-Dist: pydantic<3,>=2.10.2
|
|
46
47
|
Requires-Dist: rpds-py==0.26.0
|
|
47
48
|
Requires-Dist: typer<1,>=0.9.0
|
|
48
49
|
Provides-Extra: ag2-extras
|
|
49
|
-
Requires-Dist: ag2[anthropic]==0.9.
|
|
50
|
-
Requires-Dist: ag2[
|
|
51
|
-
Requires-Dist: ag2[
|
|
52
|
-
Requires-Dist: ag2[
|
|
53
|
-
Requires-Dist: ag2[
|
|
54
|
-
Requires-Dist: ag2[
|
|
55
|
-
Requires-Dist: ag2[
|
|
56
|
-
Requires-Dist: ag2[
|
|
57
|
-
Requires-Dist: ag2[
|
|
58
|
-
Requires-Dist: ag2[
|
|
59
|
-
Requires-Dist: ag2[
|
|
60
|
-
Requires-Dist: ag2[
|
|
61
|
-
Requires-Dist: ag2[
|
|
62
|
-
Requires-Dist: ag2[
|
|
63
|
-
Requires-Dist: ag2[
|
|
64
|
-
Requires-Dist: ag2[
|
|
65
|
-
Requires-Dist: ag2[
|
|
66
|
-
Requires-Dist: ag2[
|
|
67
|
-
Requires-Dist:
|
|
50
|
+
Requires-Dist: ag2[anthropic]==0.9.6; extra == 'ag2-extras'
|
|
51
|
+
Requires-Dist: ag2[autobuild]==0.9.6; extra == 'ag2-extras'
|
|
52
|
+
Requires-Dist: ag2[bedrock]==0.9.6; extra == 'ag2-extras'
|
|
53
|
+
Requires-Dist: ag2[blendsearch]==0.9.6; extra == 'ag2-extras'
|
|
54
|
+
Requires-Dist: ag2[cohere]==0.9.6; extra == 'ag2-extras'
|
|
55
|
+
Requires-Dist: ag2[commsagent-discord]==0.9.6; extra == 'ag2-extras'
|
|
56
|
+
Requires-Dist: ag2[commsagent-slack]==0.9.6; extra == 'ag2-extras'
|
|
57
|
+
Requires-Dist: ag2[commsagent-telegram]==0.9.6; extra == 'ag2-extras'
|
|
58
|
+
Requires-Dist: ag2[crawl4ai]==0.9.6; extra == 'ag2-extras'
|
|
59
|
+
Requires-Dist: ag2[duckduckgo]==0.9.6; extra == 'ag2-extras'
|
|
60
|
+
Requires-Dist: ag2[gemini-realtime]==0.9.6; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
61
|
+
Requires-Dist: ag2[gemini-realtime]==0.9.6; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
62
|
+
Requires-Dist: ag2[gemini]==0.9.6; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
63
|
+
Requires-Dist: ag2[gemini]==0.9.6; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
64
|
+
Requires-Dist: ag2[google-api]==0.9.6; extra == 'ag2-extras'
|
|
65
|
+
Requires-Dist: ag2[google-client]==0.9.6; extra == 'ag2-extras'
|
|
66
|
+
Requires-Dist: ag2[google-search]==0.9.6; extra == 'ag2-extras'
|
|
67
|
+
Requires-Dist: ag2[groq]==0.9.6; extra == 'ag2-extras'
|
|
68
|
+
Requires-Dist: ag2[interop-crewai]==0.9.6; extra == 'ag2-extras'
|
|
69
|
+
Requires-Dist: ag2[interop-langchain]==0.9.6; extra == 'ag2-extras'
|
|
70
|
+
Requires-Dist: ag2[lmm]==0.9.6; extra == 'ag2-extras'
|
|
71
|
+
Requires-Dist: ag2[mcp]==0.9.6; extra == 'ag2-extras'
|
|
72
|
+
Requires-Dist: ag2[mistral]==0.9.6; extra == 'ag2-extras'
|
|
73
|
+
Requires-Dist: ag2[neo4j]==0.9.6; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
74
|
+
Requires-Dist: ag2[neo4j]==0.9.6; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
75
|
+
Requires-Dist: ag2[ollama]==0.9.6; extra == 'ag2-extras'
|
|
76
|
+
Requires-Dist: ag2[openai-realtime]==0.9.6; extra == 'ag2-extras'
|
|
77
|
+
Requires-Dist: ag2[rag]==0.9.6; extra == 'ag2-extras'
|
|
78
|
+
Requires-Dist: ag2[redis]==0.9.6; extra == 'ag2-extras'
|
|
79
|
+
Requires-Dist: ag2[tavily]==0.9.6; extra == 'ag2-extras'
|
|
80
|
+
Requires-Dist: ag2[together]==0.9.6; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
81
|
+
Requires-Dist: ag2[together]==0.9.6; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
82
|
+
Requires-Dist: ag2[twilio]==0.9.6; extra == 'ag2-extras'
|
|
83
|
+
Requires-Dist: ag2[websockets]==0.9.6; extra == 'ag2-extras'
|
|
84
|
+
Requires-Dist: ag2[websurfer]==0.9.6; extra == 'ag2-extras'
|
|
85
|
+
Requires-Dist: ag2[wikipedia]==0.9.6; extra == 'ag2-extras'
|
|
68
86
|
Requires-Dist: chromadb>=0.5.10; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
69
87
|
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'
|
|
70
|
-
Requires-Dist:
|
|
71
|
-
Requires-Dist:
|
|
72
|
-
Requires-Dist: embedchain; (python_version < '3.13.3' and sys_platform != 'win32') and extra == 'ag2-extras'
|
|
73
|
-
Requires-Dist: embedchain; (python_version < '3.13.3' and sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
74
|
-
Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'ag2-extras'
|
|
75
|
-
Requires-Dist: google-auth-httplib2<0.3,>=0.2.0; extra == 'ag2-extras'
|
|
76
|
-
Requires-Dist: google-auth-oauthlib<2.0,>=1.2.1; extra == 'ag2-extras'
|
|
77
|
-
Requires-Dist: hf-xet<2.0.0,>=1.1.2; (platform_machine == 'x86_64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'ARM64' or platform_machine == 'aarch64') and extra == 'ag2-extras'
|
|
78
|
-
Requires-Dist: huggingface-hub; extra == 'ag2-extras'
|
|
79
|
-
Requires-Dist: ipython; extra == 'ag2-extras'
|
|
80
|
-
Requires-Dist: langchain-community<1,>=0.3.12; extra == 'ag2-extras'
|
|
81
|
-
Requires-Dist: litellm; extra == 'ag2-extras'
|
|
82
|
-
Requires-Dist: markdownify; extra == 'ag2-extras'
|
|
83
|
-
Requires-Dist: mcp<2,>=1.4.0; extra == 'ag2-extras'
|
|
84
|
-
Requires-Dist: mistralai>=1.8.1; extra == 'ag2-extras'
|
|
85
|
-
Requires-Dist: networkx; (python_version < '3.11') and extra == 'ag2-extras'
|
|
86
|
-
Requires-Dist: networkx>=3.5; (python_version >= '3.11') and extra == 'ag2-extras'
|
|
87
|
-
Requires-Dist: opentelemetry-api>=1.34.0; extra == 'ag2-extras'
|
|
88
|
-
Requires-Dist: opentelemetry-sdk>=1.34.0; extra == 'ag2-extras'
|
|
88
|
+
Requires-Dist: couchbase>=4.3.0; extra == 'ag2-extras'
|
|
89
|
+
Requires-Dist: fastembed>=0.3.1; extra == 'ag2-extras'
|
|
89
90
|
Requires-Dist: pgvector>=0.4.0; extra == 'ag2-extras'
|
|
90
|
-
Requires-Dist: protobuf>=5.29.3; extra == 'ag2-extras'
|
|
91
91
|
Requires-Dist: psycopg>=3.2.6; (sys_platform == 'linux') and extra == 'ag2-extras'
|
|
92
92
|
Requires-Dist: psycopg>=3.2.6; (sys_platform == 'win32' and platform_machine == 'AARCH64') and extra == 'ag2-extras'
|
|
93
93
|
Requires-Dist: psycopg>=3.2.6; (sys_platform == 'win32' and platform_machine == 'ARM64') and extra == 'ag2-extras'
|
|
@@ -96,42 +96,39 @@ Requires-Dist: psycopg>=3.2.6; (sys_platform == 'win32' and platform_machine ==
|
|
|
96
96
|
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'
|
|
97
97
|
Requires-Dist: pydantic-ai>=0.0.21; extra == 'ag2-extras'
|
|
98
98
|
Requires-Dist: pymongo>=4.11; extra == 'ag2-extras'
|
|
99
|
-
Requires-Dist: pypdf; extra == 'ag2-extras'
|
|
100
99
|
Requires-Dist: qdrant-client[fastembed]; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
101
100
|
Requires-Dist: qdrant-client[fastembed]; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
102
|
-
Requires-Dist: sentence-transformers; (sys_platform == 'linux') and extra == 'ag2-extras'
|
|
103
|
-
Requires-Dist: weaviate-client<5,>=4; extra == 'ag2-extras'
|
|
104
|
-
Requires-Dist: wikipedia-api<1.0,>=0.8.1; extra == 'ag2-extras'
|
|
105
101
|
Provides-Extra: dev
|
|
106
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
107
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
102
|
+
Requires-Dist: ag2[redis]==0.9.6; extra == 'dev'
|
|
103
|
+
Requires-Dist: ag2[websockets]==0.9.6; extra == 'dev'
|
|
108
104
|
Requires-Dist: autoflake==2.3.1; extra == 'dev'
|
|
109
|
-
Requires-Dist: bandit==1.8.
|
|
105
|
+
Requires-Dist: bandit==1.8.6; extra == 'dev'
|
|
110
106
|
Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
|
|
111
107
|
Requires-Dist: build==1.2.2.post1; extra == 'dev'
|
|
112
108
|
Requires-Dist: fakeredis==2.30.1; extra == 'dev'
|
|
113
109
|
Requires-Dist: fastjsonschema>=2.21.1; extra == 'dev'
|
|
114
110
|
Requires-Dist: flake8==7.3.0; extra == 'dev'
|
|
115
111
|
Requires-Dist: hatchling==1.27.0; extra == 'dev'
|
|
116
|
-
Requires-Dist: jsonschema==4.
|
|
112
|
+
Requires-Dist: jsonschema==4.25.0; extra == 'dev'
|
|
117
113
|
Requires-Dist: jupyter-server==2.16.0; extra == 'dev'
|
|
118
114
|
Requires-Dist: jupyterlab<5.0,>=4.4.0; extra == 'dev'
|
|
119
115
|
Requires-Dist: mypy-extensions>=1.1.0; extra == 'dev'
|
|
120
|
-
Requires-Dist: mypy==1.
|
|
116
|
+
Requires-Dist: mypy==1.17.0; extra == 'dev'
|
|
121
117
|
Requires-Dist: nbclient>=0.10.2; extra == 'dev'
|
|
122
118
|
Requires-Dist: nbconvert>=7.16.6; extra == 'dev'
|
|
123
119
|
Requires-Dist: nbformat>=5.10.4; extra == 'dev'
|
|
124
120
|
Requires-Dist: nodeenv>=1.9.1; extra == 'dev'
|
|
125
121
|
Requires-Dist: notebook-shim>=0.2.4; extra == 'dev'
|
|
126
122
|
Requires-Dist: paho-mqtt<3.0,>=2.1.0; extra == 'dev'
|
|
127
|
-
Requires-Dist: pandas-stubs==2.
|
|
123
|
+
Requires-Dist: pandas-stubs==2.3.0.250703; extra == 'dev'
|
|
128
124
|
Requires-Dist: pre-commit==4.2.0; extra == 'dev'
|
|
129
125
|
Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
|
|
130
126
|
Requires-Dist: pylint==3.3.7; extra == 'dev'
|
|
131
|
-
Requires-Dist: python-dotenv>=1.1.
|
|
132
|
-
Requires-Dist: ruff==0.12.
|
|
127
|
+
Requires-Dist: python-dotenv>=1.1.1; extra == 'dev'
|
|
128
|
+
Requires-Dist: ruff==0.12.4; extra == 'dev'
|
|
133
129
|
Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
|
|
134
|
-
Requires-Dist: types-
|
|
130
|
+
Requires-Dist: types-aiofiles==24.1.0.20250708; extra == 'dev'
|
|
131
|
+
Requires-Dist: types-jsonschema==4.25.0.20250720; extra == 'dev'
|
|
135
132
|
Requires-Dist: types-pyyaml==6.0.12.20250516; extra == 'dev'
|
|
136
133
|
Requires-Dist: types-redis==4.6.0.20241004; extra == 'dev'
|
|
137
134
|
Requires-Dist: types-requests==2.32.4.20250611; extra == 'dev'
|
|
@@ -157,29 +154,30 @@ Requires-Dist: natsort==8.4.0; extra == 'docs'
|
|
|
157
154
|
Provides-Extra: jupyter
|
|
158
155
|
Requires-Dist: jupyter-server==2.16.0; extra == 'jupyter'
|
|
159
156
|
Requires-Dist: jupyterlab<5.0,>=4.3.0; extra == 'jupyter'
|
|
160
|
-
Requires-Dist: waldiez-jupyter==0.5.
|
|
157
|
+
Requires-Dist: waldiez-jupyter==0.5.4; extra == 'jupyter'
|
|
161
158
|
Provides-Extra: mqtt
|
|
162
159
|
Requires-Dist: paho-mqtt<3.0,>=2.1.0; extra == 'mqtt'
|
|
163
160
|
Provides-Extra: redis
|
|
164
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
161
|
+
Requires-Dist: ag2[redis]==0.9.6; extra == 'redis'
|
|
165
162
|
Provides-Extra: runner
|
|
166
|
-
Requires-Dist: waldiez-runner==0.5.
|
|
163
|
+
Requires-Dist: waldiez-runner==0.5.4; (python_version >= '3.11') and extra == 'runner'
|
|
167
164
|
Provides-Extra: studio
|
|
168
|
-
Requires-Dist: waldiez-studio==0.5.
|
|
165
|
+
Requires-Dist: waldiez-studio==0.5.4; extra == 'studio'
|
|
169
166
|
Provides-Extra: test
|
|
170
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
171
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
167
|
+
Requires-Dist: ag2[redis]==0.9.6; extra == 'test'
|
|
168
|
+
Requires-Dist: ag2[websockets]==0.9.6; extra == 'test'
|
|
172
169
|
Requires-Dist: fakeredis==2.30.1; extra == 'test'
|
|
173
170
|
Requires-Dist: paho-mqtt<3.0,>=2.1.0; extra == 'test'
|
|
174
|
-
Requires-Dist: pytest-asyncio==1.
|
|
171
|
+
Requires-Dist: pytest-asyncio==1.1.0; extra == 'test'
|
|
175
172
|
Requires-Dist: pytest-cov==6.2.1; extra == 'test'
|
|
173
|
+
Requires-Dist: pytest-env==1.1.5; extra == 'test'
|
|
176
174
|
Requires-Dist: pytest-html==4.1.1; extra == 'test'
|
|
177
175
|
Requires-Dist: pytest-sugar==1.0.0; extra == 'test'
|
|
178
176
|
Requires-Dist: pytest-timeout==2.4.0; extra == 'test'
|
|
179
177
|
Requires-Dist: pytest-xdist==3.8.0; extra == 'test'
|
|
180
178
|
Requires-Dist: pytest==8.4.1; extra == 'test'
|
|
181
179
|
Provides-Extra: websockets
|
|
182
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
180
|
+
Requires-Dist: ag2[websockets]==0.9.6; extra == 'websockets'
|
|
183
181
|
Description-Content-Type: text/markdown
|
|
184
182
|
|
|
185
183
|
# Waldiez
|
|
@@ -27,7 +27,7 @@ classifiers = [
|
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
dependencies = [
|
|
30
|
-
"ag2[openai]==0.9.
|
|
30
|
+
"ag2[openai]==0.9.6",
|
|
31
31
|
"aiocsv==1.3.2",
|
|
32
32
|
"aiofiles==24.1.0",
|
|
33
33
|
"aiosqlite==0.21.0",
|
|
@@ -37,12 +37,13 @@ dependencies = [
|
|
|
37
37
|
"graphviz<=0.21",
|
|
38
38
|
"pandas>=2",
|
|
39
39
|
"pillow",
|
|
40
|
-
"pip>=25",
|
|
40
|
+
"pip>=25.1.1",
|
|
41
41
|
"jupytext",
|
|
42
42
|
"parso==0.8.4",
|
|
43
43
|
"rpds-py==0.26.0",
|
|
44
|
+
"platformdirs==4.3.8",
|
|
44
45
|
"pydantic>=2.10.2,<3",
|
|
45
|
-
# ag2[together]==0.9.
|
|
46
|
+
# ag2[together]==0.9.6 depends on together>=1.2
|
|
46
47
|
# together>=1.2 depends on typer>=0.9,<0.16
|
|
47
48
|
"typer>=0.9.0,<1",
|
|
48
49
|
"click<8.2",
|
|
@@ -71,59 +72,73 @@ waldiez = "waldiez.cli:app"
|
|
|
71
72
|
[project.optional-dependencies]
|
|
72
73
|
# stream-io-extensions: redis, websockets, mqtt
|
|
73
74
|
redis = [
|
|
74
|
-
"ag2[redis]==0.9.
|
|
75
|
+
"ag2[redis]==0.9.6",
|
|
75
76
|
]
|
|
76
77
|
websockets = [
|
|
77
|
-
"ag2[websockets]==0.9.
|
|
78
|
+
"ag2[websockets]==0.9.6",
|
|
78
79
|
]
|
|
79
80
|
mqtt = [
|
|
80
81
|
"paho-mqtt>=2.1.0,<3.0",
|
|
81
82
|
]
|
|
82
83
|
# jupyterlab extension
|
|
83
84
|
jupyter = [
|
|
84
|
-
"waldiez_jupyter==0.5.
|
|
85
|
+
"waldiez_jupyter==0.5.4",
|
|
85
86
|
"jupyterlab>=4.3.0,<5.0",
|
|
86
87
|
"jupyter_server==2.16.0",
|
|
87
88
|
]
|
|
88
89
|
runner = [
|
|
89
|
-
"waldiez_runner==0.5.
|
|
90
|
+
"waldiez_runner==0.5.4; python_version >= '3.11'",
|
|
90
91
|
]
|
|
91
92
|
studio = [
|
|
92
|
-
"waldiez_studio==0.5.
|
|
93
|
+
"waldiez_studio==0.5.4",
|
|
93
94
|
]
|
|
94
95
|
ag2_extras = [
|
|
95
|
-
|
|
96
|
-
"ag2[
|
|
97
|
-
"ag2[bedrock]==0.9.
|
|
98
|
-
"ag2[
|
|
99
|
-
"ag2[
|
|
100
|
-
"ag2[
|
|
101
|
-
"ag2[
|
|
102
|
-
"ag2[
|
|
103
|
-
"ag2[
|
|
104
|
-
"
|
|
105
|
-
"ag2[
|
|
106
|
-
"ag2[
|
|
107
|
-
"ag2[
|
|
108
|
-
|
|
109
|
-
"ag2[
|
|
110
|
-
"ag2[
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
|
|
115
|
-
"
|
|
116
|
-
"ag2[
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"ag2[
|
|
122
|
-
"ag2[
|
|
123
|
-
"ag2[
|
|
124
|
-
"ag2[
|
|
96
|
+
"ag2[anthropic]==0.9.6",
|
|
97
|
+
"ag2[autobuild]==0.9.6",
|
|
98
|
+
"ag2[bedrock]==0.9.6",
|
|
99
|
+
"ag2[blendsearch]==0.9.6",
|
|
100
|
+
"ag2[cohere]==0.9.6",
|
|
101
|
+
"ag2[commsagent-discord]==0.9.6",
|
|
102
|
+
"ag2[commsagent-slack]==0.9.6",
|
|
103
|
+
"ag2[commsagent-telegram]==0.9.6",
|
|
104
|
+
"ag2[crawl4ai]==0.9.6",
|
|
105
|
+
"ag2[duckduckgo]==0.9.6",
|
|
106
|
+
"ag2[gemini-realtime]==0.9.6;sys_platform != 'win32'",
|
|
107
|
+
"ag2[gemini-realtime]==0.9.6;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
108
|
+
"ag2[gemini]==0.9.6;sys_platform != 'win32'",
|
|
109
|
+
"ag2[gemini]==0.9.6;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
110
|
+
"ag2[google-api]==0.9.6",
|
|
111
|
+
"ag2[google-client]==0.9.6",
|
|
112
|
+
"ag2[google-search]==0.9.6",
|
|
113
|
+
"ag2[groq]==0.9.6",
|
|
114
|
+
"ag2[interop-crewai]==0.9.6",
|
|
115
|
+
"ag2[interop-langchain]==0.9.6",
|
|
116
|
+
"ag2[lmm]==0.9.6",
|
|
117
|
+
# "ag2[mcp-proxy-gen]==0.9.6",
|
|
118
|
+
"ag2[mcp]==0.9.6",
|
|
119
|
+
"ag2[mistral]==0.9.6",
|
|
120
|
+
"ag2[neo4j]==0.9.6;sys_platform != 'win32'",
|
|
121
|
+
"ag2[neo4j]==0.9.6;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
122
|
+
"ag2[ollama]==0.9.6",
|
|
123
|
+
"ag2[openai-realtime]==0.9.6",
|
|
124
|
+
"ag2[rag]==0.9.6",
|
|
125
|
+
"ag2[redis]==0.9.6",
|
|
126
|
+
"ag2[tavily]==0.9.6",
|
|
127
|
+
# "ag2[retrievechat-couchbase]==0.9.6",
|
|
128
|
+
# "ag2[retrievechat-mongodb]==0.9.6",
|
|
129
|
+
# "ag2[retrievechat-pgvector]==0.9.6",
|
|
130
|
+
# "ag2[retrievechat-qdrant]==0.9.6",
|
|
131
|
+
# "ag2[retrievechat]==0.9.6",
|
|
132
|
+
"ag2[together]==0.9.6;sys_platform != 'win32'",
|
|
133
|
+
"ag2[together]==0.9.6;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
134
|
+
"ag2[twilio]==0.9.6",
|
|
135
|
+
"ag2[websockets]==0.9.6",
|
|
136
|
+
"ag2[websurfer]==0.9.6",
|
|
137
|
+
"ag2[wikipedia]==0.9.6",
|
|
125
138
|
"chromadb>=0.5.10;sys_platform != 'win32'",
|
|
126
139
|
"chromadb>=0.5.10;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
140
|
+
"couchbase>=4.3.0",
|
|
141
|
+
"fastembed>=0.3.1",
|
|
127
142
|
"pgvector>=0.4.0",
|
|
128
143
|
"psycopg>=3.2.6;sys_platform == 'linux'",
|
|
129
144
|
"psycopg>=3.2.6;sys_platform == 'win32' and platform_machine == 'arm64'",
|
|
@@ -131,41 +146,21 @@ ag2_extras = [
|
|
|
131
146
|
"psycopg>=3.2.6;sys_platform == 'win32' and platform_machine == 'aarch64'",
|
|
132
147
|
"psycopg>=3.2.6;sys_platform == 'win32' and platform_machine == 'AARCH64'",
|
|
133
148
|
"psycopg[binary]>=3.2.6;sys_platform != 'linux' and platform_machine != 'arm64' and platform_machine != 'ARM64' and platform_machine != 'aarch64' and platform_machine != 'AARCH64'",
|
|
134
|
-
"protobuf>=5.29.3",
|
|
135
|
-
"pypdf",
|
|
136
|
-
"ipython",
|
|
137
|
-
"markdownify",
|
|
138
|
-
"beautifulsoup4",
|
|
139
|
-
"sentence-transformers;sys_platform == 'linux'",
|
|
140
|
-
"huggingface-hub",
|
|
141
|
-
"hf-xet>=1.1.2,<2.0.0;platform_machine == 'x86_64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'ARM64' or platform_machine == 'aarch64'",
|
|
142
|
-
"qdrant-client[fastembed];sys_platform != 'win32'",
|
|
143
|
-
"qdrant-client[fastembed];sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
144
|
-
"pgvector>=0.4.0",
|
|
145
|
-
# for some reason embedchain has: python = ">=3.9,<=3.13.2"
|
|
146
|
-
"embedchain;python_version < '3.13.3' and sys_platform != 'win32'",
|
|
147
|
-
"embedchain;python_version < '3.13.3' and sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
148
|
-
"langchain-community>=0.3.12,<1",
|
|
149
|
-
"networkx>=3.5;python_version >= '3.11'",
|
|
150
|
-
"networkx;python_version < '3.11'",
|
|
151
149
|
"pydantic-ai>=0.0.21",
|
|
152
150
|
"pymongo>=4.11",
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"google-auth-httplib2>=0.2.0,<0.3",
|
|
156
|
-
"google-auth-oauthlib>=1.2.1,<2.0",
|
|
157
|
-
"mcp>=1.4.0,<2",
|
|
151
|
+
"qdrant-client[fastembed];sys_platform != 'win32'",
|
|
152
|
+
"qdrant-client[fastembed];sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
158
153
|
]
|
|
159
154
|
dev = [
|
|
160
|
-
"ag2[redis]==0.9.
|
|
161
|
-
"ag2[websockets]==0.9.
|
|
155
|
+
"ag2[redis]==0.9.6",
|
|
156
|
+
"ag2[websockets]==0.9.6",
|
|
162
157
|
"autoflake==2.3.1",
|
|
163
|
-
"bandit==1.8.
|
|
158
|
+
"bandit==1.8.6",
|
|
164
159
|
"black[jupyter]==25.1.0",
|
|
165
160
|
"build==1.2.2.post1",
|
|
166
161
|
"fakeredis==2.30.1",
|
|
167
162
|
"flake8==7.3.0",
|
|
168
|
-
"jsonschema==4.
|
|
163
|
+
"jsonschema==4.25.0",
|
|
169
164
|
"jupyterlab>=4.4.0,<5.0",
|
|
170
165
|
"notebook-shim>=0.2.4",
|
|
171
166
|
"fastjsonschema>=2.21.1",
|
|
@@ -174,18 +169,19 @@ dev = [
|
|
|
174
169
|
"nbformat>=5.10.4",
|
|
175
170
|
"nbconvert>=7.16.6",
|
|
176
171
|
"hatchling==1.27.0",
|
|
177
|
-
"mypy==1.
|
|
172
|
+
"mypy==1.17.0",
|
|
178
173
|
"mypy-extensions>=1.1.0",
|
|
179
174
|
"paho-mqtt>=2.1.0,<3.0",
|
|
180
|
-
"pandas-stubs==2.
|
|
175
|
+
"pandas-stubs==2.3.0.250703",
|
|
181
176
|
"nodeenv>=1.9.1",
|
|
182
177
|
"pre-commit==4.2.0",
|
|
183
178
|
"pydocstyle==6.3.0",
|
|
184
179
|
"pylint==3.3.7",
|
|
185
|
-
"python-dotenv>=1.1.
|
|
186
|
-
"ruff==0.12.
|
|
180
|
+
"python-dotenv>=1.1.1",
|
|
181
|
+
"ruff==0.12.4",
|
|
182
|
+
"types-aiofiles==24.1.0.20250708",
|
|
187
183
|
"types-pyyaml==6.0.12.20250516",
|
|
188
|
-
"types-jsonschema==4.
|
|
184
|
+
"types-jsonschema==4.25.0.20250720",
|
|
189
185
|
"types-redis==4.6.0.20241004",
|
|
190
186
|
"types-toml==0.10.8.20240310",
|
|
191
187
|
"types-requests==2.32.4.20250611",
|
|
@@ -211,13 +207,14 @@ docs = [
|
|
|
211
207
|
"natsort==8.4.0",
|
|
212
208
|
]
|
|
213
209
|
test = [
|
|
214
|
-
"ag2[redis]==0.9.
|
|
215
|
-
"ag2[websockets]==0.9.
|
|
210
|
+
"ag2[redis]==0.9.6",
|
|
211
|
+
"ag2[websockets]==0.9.6",
|
|
216
212
|
"fakeredis==2.30.1",
|
|
217
213
|
"paho-mqtt>=2.1.0,<3.0",
|
|
218
214
|
"pytest==8.4.1",
|
|
219
|
-
"pytest-asyncio==1.
|
|
215
|
+
"pytest-asyncio==1.1.0",
|
|
220
216
|
"pytest-cov==6.2.1",
|
|
217
|
+
"pytest-env==1.1.5",
|
|
221
218
|
"pytest-html==4.1.1",
|
|
222
219
|
"pytest-sugar==1.0.0",
|
|
223
220
|
"pytest-timeout==2.4.0",
|
|
@@ -260,42 +257,48 @@ fields = ["description", "authors", "urls"]
|
|
|
260
257
|
[tool.hatch.envs.default]
|
|
261
258
|
python = "3.13"
|
|
262
259
|
installer = "uv"
|
|
263
|
-
|
|
260
|
+
post-install-commands = [
|
|
261
|
+
"pip install .[dev,test,docs,ag2_extras,redis,websockets,mqtt]"
|
|
262
|
+
]
|
|
264
263
|
|
|
265
264
|
[tool.hatch.envs.default.scripts]
|
|
266
|
-
pre-test =
|
|
267
|
-
python -m pip install -qq --upgrade pip
|
|
268
|
-
pip install -qq -r requirements/test.txt
|
|
269
|
-
|
|
270
|
-
test =
|
|
271
|
-
hatch run pre-test
|
|
272
|
-
pytest -c pyproject.toml --cov=waldiez --cov-branch --cov-report=term-missing:skip-covered --cov-report=lcov:coverage/py/lcov.info --cov-report=html:coverage/py/html --cov-report=xml:coverage/py/coverage.xml --junitxml=coverage/py/xunit.xml tests
|
|
273
|
-
|
|
274
|
-
test-models =
|
|
275
|
-
hatch run pre-test
|
|
276
|
-
pytest -c pyproject.toml --cov=waldiez/models --cov-branch --cov-report=term-missing:skip-covered -vv tests/models
|
|
277
|
-
|
|
278
|
-
test-exporting =
|
|
279
|
-
hatch run pre-test
|
|
280
|
-
pytest -c pyproject.toml --cov=waldiez/exporting --cov-branch --cov-report=term-missing:skip-covered -vv tests/exporting
|
|
281
|
-
|
|
282
|
-
test-io =
|
|
283
|
-
hatch run pre-test
|
|
284
|
-
pytest -c pyproject.toml --cov=waldiez/io --cov-branch --cov-report=term-missing:skip-covered -vv tests/io
|
|
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
|
-
|
|
265
|
+
pre-test = [
|
|
266
|
+
"python -m pip install -qq --upgrade pip",
|
|
267
|
+
"pip install -qq -r requirements/test.txt"
|
|
268
|
+
]
|
|
269
|
+
test = [
|
|
270
|
+
"hatch run pre-test",
|
|
271
|
+
"pytest -c pyproject.toml --cov=waldiez --cov-branch --cov-report=term-missing:skip-covered --cov-report=lcov:coverage/py/lcov.info --cov-report=html:coverage/py/html --cov-report=xml:coverage/py/coverage.xml --junitxml=coverage/py/xunit.xml tests",
|
|
272
|
+
]
|
|
273
|
+
test-models = [
|
|
274
|
+
"hatch run pre-test",
|
|
275
|
+
"pytest -c pyproject.toml --cov=waldiez/models --cov-branch --cov-report=term-missing:skip-covered -vv tests/models"
|
|
276
|
+
]
|
|
277
|
+
test-exporting = [
|
|
278
|
+
"hatch run pre-test",
|
|
279
|
+
"pytest -c pyproject.toml --cov=waldiez/exporting --cov-branch --cov-report=term-missing:skip-covered -vv tests/exporting"
|
|
280
|
+
]
|
|
281
|
+
test-io = [
|
|
282
|
+
"hatch run pre-test",
|
|
283
|
+
"pytest -c pyproject.toml --cov=waldiez/io --cov-branch --cov-report=term-missing:skip-covered -vv tests/io"
|
|
284
|
+
]
|
|
285
|
+
test-running = [
|
|
286
|
+
"hatch run pre-test",
|
|
287
|
+
"pytest -c pyproject.toml --cov=waldiez/running --cov-branch --cov-report=term-missing:skip-covered -vv tests/running"
|
|
288
|
+
]
|
|
289
|
+
test-storage = [
|
|
290
|
+
"hatch run pre-test",
|
|
291
|
+
"pytest -c pyproject.toml --cov=waldiez/storage --cov-branch --cov-report=term-missing:skip-covered -vv tests/storage"
|
|
292
|
+
]
|
|
290
293
|
|
|
291
294
|
format-black = "black --config pyproject.toml waldiez tests scripts"
|
|
292
295
|
format-autoflake = "autoflake --in-place --remove-all-unused-imports --remove-unused-variables --recursive waldiez tests scripts"
|
|
293
296
|
format-ruff = "ruff format --config pyproject.toml waldiez tests scripts"
|
|
294
|
-
format =
|
|
295
|
-
hatch run format-black
|
|
296
|
-
hatch run format-autoflake
|
|
297
|
-
hatch run format-ruff
|
|
298
|
-
|
|
297
|
+
format = [
|
|
298
|
+
"hatch run format-black",
|
|
299
|
+
"hatch run format-autoflake",
|
|
300
|
+
"hatch run format-ruff"
|
|
301
|
+
]
|
|
299
302
|
|
|
300
303
|
lint-black = "black --config pyproject.toml --check --diff waldiez tests scripts"
|
|
301
304
|
lint-mypy = "mypy --config pyproject.toml waldiez tests scripts"
|
|
@@ -304,20 +307,20 @@ lint-bandit = "bandit -r -c pyproject.toml waldiez scripts"
|
|
|
304
307
|
lint-yamllint = "yamllint ."
|
|
305
308
|
lint-ruff = "ruff check --config pyproject.toml waldiez tests scripts"
|
|
306
309
|
lint-pylint = "pylint --rcfile=pyproject.toml waldiez tests scripts"
|
|
307
|
-
lint =
|
|
308
|
-
hatch run lint-black
|
|
309
|
-
hatch run lint-mypy
|
|
310
|
-
hatch run lint-flake8
|
|
311
|
-
hatch run lint-bandit
|
|
312
|
-
hatch run lint-yamllint
|
|
313
|
-
hatch run lint-ruff
|
|
314
|
-
hatch run lint-pylint
|
|
315
|
-
|
|
310
|
+
lint = [
|
|
311
|
+
"hatch run lint-black",
|
|
312
|
+
"hatch run lint-mypy",
|
|
313
|
+
"hatch run lint-flake8",
|
|
314
|
+
"hatch run lint-bandit",
|
|
315
|
+
"hatch run lint-yamllint",
|
|
316
|
+
"hatch run lint-ruff",
|
|
317
|
+
"hatch run lint-pylint",
|
|
318
|
+
]
|
|
316
319
|
|
|
317
|
-
forlint =
|
|
318
|
-
hatch run format
|
|
319
|
-
hatch run lint
|
|
320
|
-
|
|
320
|
+
forlint = [
|
|
321
|
+
"hatch run format",
|
|
322
|
+
"hatch run lint"
|
|
323
|
+
]
|
|
321
324
|
|
|
322
325
|
clean = "python scripts/clean.py"
|
|
323
326
|
smoke = "python scripts/smoke.py"
|
|
@@ -329,29 +332,29 @@ docs-live = "python -m mkdocs serve --watch mkdocs.yml --watch docs --watch wald
|
|
|
329
332
|
build = "python -m build --wheel --sdist --outdir out/dist"
|
|
330
333
|
image = "python scripts/image.py"
|
|
331
334
|
|
|
332
|
-
check =
|
|
333
|
-
hatch run clean
|
|
334
|
-
hatch run format
|
|
335
|
-
hatch run lint
|
|
336
|
-
hatch run test
|
|
337
|
-
hatch run smoke
|
|
338
|
-
|
|
335
|
+
check = [
|
|
336
|
+
"hatch run clean",
|
|
337
|
+
"hatch run format",
|
|
338
|
+
"hatch run lint",
|
|
339
|
+
"hatch run test",
|
|
340
|
+
"hatch run smoke"
|
|
341
|
+
]
|
|
339
342
|
|
|
340
343
|
matrix-test = "hatch run test:test"
|
|
341
344
|
# alias
|
|
342
345
|
test-matrix = "hatch run test:test"
|
|
343
346
|
|
|
344
|
-
release =
|
|
345
|
-
hatch run check
|
|
346
|
-
hatch run matrix-test
|
|
347
|
-
hatch run docs
|
|
348
|
-
hatch run build
|
|
349
|
-
|
|
347
|
+
release = [
|
|
348
|
+
"hatch run check",
|
|
349
|
+
"hatch run matrix-test",
|
|
350
|
+
"hatch run docs",
|
|
351
|
+
"hatch run build"
|
|
352
|
+
]
|
|
350
353
|
|
|
351
|
-
all =
|
|
352
|
-
hatch run release
|
|
353
|
-
hatch run image
|
|
354
|
-
|
|
354
|
+
all = [
|
|
355
|
+
"hatch run release",
|
|
356
|
+
"hatch run image"
|
|
357
|
+
]
|
|
355
358
|
|
|
356
359
|
[tool.hatch.envs.test]
|
|
357
360
|
inherit = true
|
|
@@ -543,15 +546,7 @@ split-on-trailing-comma = true
|
|
|
543
546
|
|
|
544
547
|
# pytest
|
|
545
548
|
[tool.pytest.ini_options]
|
|
546
|
-
addopts = ""
|
|
547
|
-
-d \
|
|
548
|
-
-s \
|
|
549
|
-
-n auto \
|
|
550
|
-
--exitfirst \
|
|
551
|
-
--durations=10 \
|
|
552
|
-
--color=yes \
|
|
553
|
-
--timeout=120
|
|
554
|
-
"""
|
|
549
|
+
addopts = "-d -s -n auto --exitfirst --durations=10 --color=yes --timeout=120"
|
|
555
550
|
asyncio_default_fixture_loop_scope = "session"
|
|
556
551
|
asyncio_mode = "auto"
|
|
557
552
|
filterwarnings = [
|
|
@@ -566,7 +561,11 @@ python_files = [
|
|
|
566
561
|
"*_tests.py",
|
|
567
562
|
]
|
|
568
563
|
pythonpath = ["."]
|
|
569
|
-
|
|
564
|
+
#
|
|
565
|
+
env = [
|
|
566
|
+
"WALDIEZ_TESTING=1",
|
|
567
|
+
]
|
|
568
|
+
#
|
|
570
569
|
# coverage
|
|
571
570
|
[tool.coverage.run]
|
|
572
571
|
omit = [
|