waldiez 0.5.9__tar.gz → 0.5.10__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.9 → waldiez-0.5.10}/PKG-INFO +74 -74
- {waldiez-0.5.9 → waldiez-0.5.10}/README.md +0 -8
- {waldiez-0.5.9 → waldiez-0.5.10}/pyproject.toml +93 -75
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/_version.py +1 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/cli.py +112 -24
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/exporter.py +3 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/captain_agent_extras.py +44 -7
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/handoffs/condition.py +3 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/utils/common.py +25 -23
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/__init__.py +0 -2
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/context.py +13 -13
- waldiez-0.5.10/waldiez/exporting/core/protocols.py +141 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/result.py +5 -5
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/merger.py +2 -2
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/orchestrator.py +1 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/utils/common.py +2 -2
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/utils/importing.py +1 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/utils/logging.py +6 -7
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/tools/exporter.py +5 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/tools/factory.py +4 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/tools/processor.py +5 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/_ws.py +13 -5
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/content/image.py +1 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/user_input.py +4 -4
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/user_response.py +1 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/mqtt.py +1 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/structured.py +17 -17
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/utils.py +1 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/ws.py +9 -11
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/logger.py +180 -63
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/update_system_message.py +0 -2
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/doc_agent/doc_agent.py +8 -1
- waldiez-0.5.10/waldiez/models/common/dict_utils.py +193 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/flow/flow.py +6 -6
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/flow/info.py +5 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/model/_llm.py +28 -14
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/model/model.py +4 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/model/model_data.py +18 -5
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/_config.py +5 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/_duckduckgo.py +4 -0
- waldiez-0.5.10/waldiez/models/tool/predefined/_email.py +474 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/_google.py +4 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/_perplexity.py +3 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/_searxng.py +3 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/_tavily.py +4 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/_wikipedia.py +4 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/_youtube.py +4 -1
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/protocol.py +3 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/tool.py +22 -4
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/waldiez.py +12 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/runner.py +37 -54
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/__init__.py +6 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/base_runner.py +310 -353
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/environment.py +1 -0
- waldiez-0.5.10/waldiez/running/exceptions.py +9 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/post_run.py +4 -4
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/pre_run.py +51 -40
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/protocol.py +21 -101
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/run_results.py +1 -1
- waldiez-0.5.10/waldiez/running/standard_runner.py +260 -0
- waldiez-0.5.10/waldiez/running/step_by_step/__init__.py +46 -0
- waldiez-0.5.10/waldiez/running/step_by_step/breakpoints_mixin.py +188 -0
- waldiez-0.5.10/waldiez/running/step_by_step/step_by_step_models.py +224 -0
- waldiez-0.5.10/waldiez/running/step_by_step/step_by_step_runner.py +745 -0
- waldiez-0.5.10/waldiez/running/subprocess_runner/__base__.py +282 -0
- waldiez-0.5.10/waldiez/running/subprocess_runner/__init__.py +16 -0
- waldiez-0.5.10/waldiez/running/subprocess_runner/_async_runner.py +362 -0
- waldiez-0.5.10/waldiez/running/subprocess_runner/_sync_runner.py +455 -0
- waldiez-0.5.10/waldiez/running/subprocess_runner/runner.py +561 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/timeline_processor.py +1 -1
- waldiez-0.5.10/waldiez/running/utils.py +511 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/utils/version.py +2 -6
- waldiez-0.5.10/waldiez/ws/__init__.py +70 -0
- waldiez-0.5.10/waldiez/ws/__main__.py +15 -0
- waldiez-0.5.10/waldiez/ws/_file_handler.py +201 -0
- waldiez-0.5.10/waldiez/ws/cli.py +211 -0
- waldiez-0.5.10/waldiez/ws/client_manager.py +835 -0
- waldiez-0.5.10/waldiez/ws/errors.py +416 -0
- waldiez-0.5.10/waldiez/ws/models.py +971 -0
- waldiez-0.5.10/waldiez/ws/reloader.py +342 -0
- waldiez-0.5.10/waldiez/ws/server.py +469 -0
- waldiez-0.5.10/waldiez/ws/session_manager.py +393 -0
- waldiez-0.5.10/waldiez/ws/session_stats.py +83 -0
- waldiez-0.5.10/waldiez/ws/utils.py +385 -0
- waldiez-0.5.9/waldiez/exporting/core/protocols.py +0 -282
- waldiez-0.5.9/waldiez/models/common/dict_utils.py +0 -64
- waldiez-0.5.9/waldiez/running/patch_io_stream.py +0 -210
- waldiez-0.5.9/waldiez/running/standard_runner.py +0 -453
- waldiez-0.5.9/waldiez/running/utils.py +0 -136
- {waldiez-0.5.9 → waldiez-0.5.10}/.gitignore +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/LICENSE +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/NOTICE.md +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/__main__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/cli_extras/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/cli_extras/jupyter.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/cli_extras/runner.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/cli_extras/studio.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporter.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/code_execution.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/doc_agent_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/group_manager_agent_extas.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/group_member_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/handoffs/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/handoffs/after_work.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/handoffs/available.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/handoffs/handoff.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/handoffs/target.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/rag/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/rag/chroma_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/rag/mongo_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/rag/pgvector_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/rag/qdrant_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/rag/vector_db_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/rag_user_proxy_agent_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/extras/reasoning_agent_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/factory.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/processor.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/system_message.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/agent/termination.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/exporter.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/factory.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/processor.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/utils/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/utils/group.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/utils/nested.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/utils/sequential.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/chats/utils/single.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/constants.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/content.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/enums.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/errors.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/exporter.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/exporters.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/agent_extras/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/agent_extras/captain_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/agent_extras/group_manager_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/agent_extras/rag_user_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/agent_extras/reasoning_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/agent_extras/standard_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/base.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/chat_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/flow_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/model_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/path_resolver.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/serializer.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/extras/tool_extras.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/types.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/utils/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/utils/comment.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/utils/llm_config.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/core/validation.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/execution_generator.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/exporter.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/factory.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/file_generator.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/utils/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/flow/utils/linting.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/models/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/models/exporter.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/models/factory.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/models/processor.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/tools/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/exporting/tools/registration.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/base.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/constants.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/content/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/content/audio.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/content/base.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/content/file.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/content/text.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/models/content/video.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/io/redis.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/agent.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/agent_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/agent_type.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/code_execution.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/human_input_mode.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/linked_tool.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/nested_chat.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agent/termination_message.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/agents.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/assistant/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/assistant/assistant.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/assistant/assistant_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/captain/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/captain/captain_agent.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/captain/captain_agent_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/captain/captain_agent_lib_entry.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/doc_agent/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/doc_agent/doc_agent_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/doc_agent/rag_query_engine.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/extra_requirements.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/group_manager/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/group_manager/group_manager.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/group_manager/group_manager_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/group_manager/speakers.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/rag_user_proxy/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/rag_user_proxy/rag_user_proxy.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/rag_user_proxy/rag_user_proxy_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/rag_user_proxy/retrieve_config.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/rag_user_proxy/vector_db_config.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/reasoning/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/reasoning/reasoning_agent.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/reasoning/reasoning_agent_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/user_proxy/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/user_proxy/user_proxy.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/agents/user_proxy/user_proxy_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/chat/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/chat/chat.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/chat/chat_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/chat/chat_message.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/chat/chat_nested.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/chat/chat_summary.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/ag2_version.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/base.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/date_utils.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/handoff.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/id_generator.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/method_utils.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/naming.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/common/waldiez_version.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/flow/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/flow/connection.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/flow/flow_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/flow/naming.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/model/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/model/_aws.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/model/_price.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/model/extra_requirements.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/extra_requirements.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/predefined/registry.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/tool_data.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/models/tool/tool_type.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/py.typed +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/running/gen_seq_diagram.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/waldiez/utils/__init__.py +0 -0
- {waldiez-0.5.9 → waldiez-0.5.10}/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.10
|
|
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,11 +27,10 @@ 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.9
|
|
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
|
-
Requires-Dist: asyncer==0.0.8
|
|
35
34
|
Requires-Dist: click<8.2
|
|
36
35
|
Requires-Dist: graphviz<=0.21
|
|
37
36
|
Requires-Dist: httpx<1
|
|
@@ -43,50 +42,55 @@ Requires-Dist: parso==0.8.4
|
|
|
43
42
|
Requires-Dist: pillow
|
|
44
43
|
Requires-Dist: pip>=25.1.1
|
|
45
44
|
Requires-Dist: platformdirs==4.3.8
|
|
45
|
+
Requires-Dist: psutil==7.0.0
|
|
46
46
|
Requires-Dist: pydantic<3,>=2.10.2
|
|
47
|
-
Requires-Dist: rpds-py==0.
|
|
47
|
+
Requires-Dist: rpds-py==0.27.0
|
|
48
48
|
Requires-Dist: typer<1,>=0.9.0
|
|
49
|
+
Requires-Dist: watchdog==6.0.0
|
|
50
|
+
Requires-Dist: websockets==15.0.1
|
|
49
51
|
Provides-Extra: ag2-extras
|
|
50
|
-
Requires-Dist: ag2[anthropic]==0.9.
|
|
51
|
-
Requires-Dist: ag2[autobuild]==0.9.
|
|
52
|
-
Requires-Dist: ag2[bedrock]==0.9.
|
|
53
|
-
Requires-Dist: ag2[blendsearch]==0.9.
|
|
54
|
-
Requires-Dist: ag2[cohere]==0.9.
|
|
55
|
-
Requires-Dist: ag2[commsagent-discord]==0.9.
|
|
56
|
-
Requires-Dist: ag2[commsagent-slack]==0.9.
|
|
57
|
-
Requires-Dist: ag2[commsagent-telegram]==0.9.
|
|
58
|
-
Requires-Dist: ag2[crawl4ai]==0.9.
|
|
59
|
-
Requires-Dist: ag2[duckduckgo]==0.9.
|
|
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: ag2[
|
|
68
|
-
Requires-Dist: ag2[
|
|
69
|
-
Requires-Dist: ag2[
|
|
70
|
-
Requires-Dist: ag2[
|
|
71
|
-
Requires-Dist: ag2[
|
|
72
|
-
Requires-Dist: ag2[
|
|
73
|
-
Requires-Dist: ag2[
|
|
74
|
-
Requires-Dist: ag2[
|
|
75
|
-
Requires-Dist: ag2[
|
|
76
|
-
Requires-Dist: ag2[
|
|
77
|
-
Requires-Dist: ag2[
|
|
78
|
-
Requires-Dist: ag2[
|
|
79
|
-
Requires-Dist: ag2[
|
|
80
|
-
Requires-Dist: ag2[
|
|
81
|
-
Requires-Dist:
|
|
82
|
-
Requires-Dist: ag2[twilio]==0.9.7; extra == 'ag2-extras'
|
|
83
|
-
Requires-Dist: ag2[websockets]==0.9.7; extra == 'ag2-extras'
|
|
84
|
-
Requires-Dist: ag2[websurfer]==0.9.7; extra == 'ag2-extras'
|
|
85
|
-
Requires-Dist: ag2[wikipedia]==0.9.7; extra == 'ag2-extras'
|
|
52
|
+
Requires-Dist: ag2[anthropic]==0.9.9; extra == 'ag2-extras'
|
|
53
|
+
Requires-Dist: ag2[autobuild]==0.9.9; extra == 'ag2-extras'
|
|
54
|
+
Requires-Dist: ag2[bedrock]==0.9.9; extra == 'ag2-extras'
|
|
55
|
+
Requires-Dist: ag2[blendsearch]==0.9.9; extra == 'ag2-extras'
|
|
56
|
+
Requires-Dist: ag2[cohere]==0.9.9; extra == 'ag2-extras'
|
|
57
|
+
Requires-Dist: ag2[commsagent-discord]==0.9.9; extra == 'ag2-extras'
|
|
58
|
+
Requires-Dist: ag2[commsagent-slack]==0.9.9; extra == 'ag2-extras'
|
|
59
|
+
Requires-Dist: ag2[commsagent-telegram]==0.9.9; extra == 'ag2-extras'
|
|
60
|
+
Requires-Dist: ag2[crawl4ai]==0.9.9; extra == 'ag2-extras'
|
|
61
|
+
Requires-Dist: ag2[duckduckgo]==0.9.9; extra == 'ag2-extras'
|
|
62
|
+
Requires-Dist: ag2[google-api]==0.9.9; extra == 'ag2-extras'
|
|
63
|
+
Requires-Dist: ag2[google-client]==0.9.9; extra == 'ag2-extras'
|
|
64
|
+
Requires-Dist: ag2[google-search]==0.9.9; extra == 'ag2-extras'
|
|
65
|
+
Requires-Dist: ag2[groq]==0.9.9; extra == 'ag2-extras'
|
|
66
|
+
Requires-Dist: ag2[interop-crewai]==0.9.9; extra == 'ag2-extras'
|
|
67
|
+
Requires-Dist: ag2[interop-langchain]==0.9.9; extra == 'ag2-extras'
|
|
68
|
+
Requires-Dist: ag2[lmm]==0.9.9; extra == 'ag2-extras'
|
|
69
|
+
Requires-Dist: ag2[mcp]==0.9.9; extra == 'ag2-extras'
|
|
70
|
+
Requires-Dist: ag2[mistral]==0.9.9; extra == 'ag2-extras'
|
|
71
|
+
Requires-Dist: ag2[neo4j]==0.9.9; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
72
|
+
Requires-Dist: ag2[neo4j]==0.9.9; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
73
|
+
Requires-Dist: ag2[ollama]==0.9.9; extra == 'ag2-extras'
|
|
74
|
+
Requires-Dist: ag2[openai-realtime]==0.9.9; extra == 'ag2-extras'
|
|
75
|
+
Requires-Dist: ag2[redis]==0.9.9; extra == 'ag2-extras'
|
|
76
|
+
Requires-Dist: ag2[tavily]==0.9.9; extra == 'ag2-extras'
|
|
77
|
+
Requires-Dist: ag2[together]==0.9.9; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
78
|
+
Requires-Dist: ag2[together]==0.9.9; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
79
|
+
Requires-Dist: ag2[twilio]==0.9.9; extra == 'ag2-extras'
|
|
80
|
+
Requires-Dist: ag2[websockets]==0.9.9; extra == 'ag2-extras'
|
|
81
|
+
Requires-Dist: ag2[websurfer]==0.9.9; extra == 'ag2-extras'
|
|
82
|
+
Requires-Dist: ag2[wikipedia]==0.9.9; extra == 'ag2-extras'
|
|
83
|
+
Requires-Dist: chromadb<2,>=0.5; extra == 'ag2-extras'
|
|
86
84
|
Requires-Dist: chromadb>=0.5.10; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
87
85
|
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'
|
|
88
86
|
Requires-Dist: couchbase>=4.4.0; extra == 'ag2-extras'
|
|
87
|
+
Requires-Dist: docling<3,>=2.15.1; extra == 'ag2-extras'
|
|
89
88
|
Requires-Dist: fastembed>=0.3.1; extra == 'ag2-extras'
|
|
89
|
+
Requires-Dist: llama-index-embeddings-huggingface; extra == 'ag2-extras'
|
|
90
|
+
Requires-Dist: llama-index-llms-langchain; extra == 'ag2-extras'
|
|
91
|
+
Requires-Dist: llama-index-vector-stores-chroma; extra == 'ag2-extras'
|
|
92
|
+
Requires-Dist: llama-index-vector-stores-mongodb; extra == 'ag2-extras'
|
|
93
|
+
Requires-Dist: llama-index<1,>=0.12; extra == 'ag2-extras'
|
|
90
94
|
Requires-Dist: pgvector>=0.4.0; extra == 'ag2-extras'
|
|
91
95
|
Requires-Dist: psycopg>=3.2.6; (sys_platform == 'linux') and extra == 'ag2-extras'
|
|
92
96
|
Requires-Dist: psycopg>=3.2.6; (sys_platform == 'win32' and platform_machine == 'AARCH64') and extra == 'ag2-extras'
|
|
@@ -98,20 +102,23 @@ Requires-Dist: pydantic-ai>=0.0.21; extra == 'ag2-extras'
|
|
|
98
102
|
Requires-Dist: pymongo>=4.11; extra == 'ag2-extras'
|
|
99
103
|
Requires-Dist: qdrant-client[fastembed]; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
100
104
|
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'
|
|
105
|
+
Requires-Dist: requests<3,>=2.32.3; extra == 'ag2-extras'
|
|
106
|
+
Requires-Dist: selenium<5,>=4.28.1; extra == 'ag2-extras'
|
|
107
|
+
Requires-Dist: webdriver-manager==4.0.2; extra == 'ag2-extras'
|
|
101
108
|
Provides-Extra: dev
|
|
102
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
103
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
109
|
+
Requires-Dist: ag2[redis]==0.9.9; extra == 'dev'
|
|
110
|
+
Requires-Dist: ag2[websockets]==0.9.9; extra == 'dev'
|
|
104
111
|
Requires-Dist: autoflake==2.3.1; extra == 'dev'
|
|
105
112
|
Requires-Dist: bandit==1.8.6; extra == 'dev'
|
|
106
113
|
Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
|
|
107
114
|
Requires-Dist: build==1.3.0; extra == 'dev'
|
|
108
|
-
Requires-Dist: fakeredis==2.
|
|
109
|
-
Requires-Dist: fastjsonschema>=2.21.
|
|
115
|
+
Requires-Dist: fakeredis==2.31.0; extra == 'dev'
|
|
116
|
+
Requires-Dist: fastjsonschema>=2.21.2; extra == 'dev'
|
|
110
117
|
Requires-Dist: flake8==7.3.0; extra == 'dev'
|
|
111
118
|
Requires-Dist: hatchling==1.27.0; extra == 'dev'
|
|
112
|
-
Requires-Dist: jsonschema==4.25.
|
|
119
|
+
Requires-Dist: jsonschema==4.25.1; extra == 'dev'
|
|
113
120
|
Requires-Dist: jupyter-server==2.16.0; extra == 'dev'
|
|
114
|
-
Requires-Dist: jupyterlab==4.4.
|
|
121
|
+
Requires-Dist: jupyterlab==4.4.6; extra == 'dev'
|
|
115
122
|
Requires-Dist: mypy-extensions>=1.1.0; extra == 'dev'
|
|
116
123
|
Requires-Dist: mypy==1.17.1; extra == 'dev'
|
|
117
124
|
Requires-Dist: nbclient>=0.10.2; extra == 'dev'
|
|
@@ -121,17 +128,18 @@ Requires-Dist: nodeenv>=1.9.1; extra == 'dev'
|
|
|
121
128
|
Requires-Dist: notebook-shim>=0.2.4; extra == 'dev'
|
|
122
129
|
Requires-Dist: paho-mqtt<3.0,>=2.1.0; extra == 'dev'
|
|
123
130
|
Requires-Dist: pandas-stubs==2.3.0.250703; extra == 'dev'
|
|
124
|
-
Requires-Dist: pre-commit==4.
|
|
131
|
+
Requires-Dist: pre-commit==4.3.0; extra == 'dev'
|
|
125
132
|
Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
|
|
126
|
-
Requires-Dist: pylint==3.3.
|
|
133
|
+
Requires-Dist: pylint==3.3.8; extra == 'dev'
|
|
127
134
|
Requires-Dist: python-dotenv>=1.1.1; extra == 'dev'
|
|
128
|
-
Requires-Dist: ruff==0.12.
|
|
135
|
+
Requires-Dist: ruff==0.12.9; extra == 'dev'
|
|
129
136
|
Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
|
|
130
|
-
Requires-Dist: types-aiofiles==24.1.0.
|
|
131
|
-
Requires-Dist: types-jsonschema==4.25.0.
|
|
132
|
-
Requires-Dist: types-
|
|
137
|
+
Requires-Dist: types-aiofiles==24.1.0.20250809; extra == 'dev'
|
|
138
|
+
Requires-Dist: types-jsonschema==4.25.0.20250809; extra == 'dev'
|
|
139
|
+
Requires-Dist: types-psutil==7.0.0.20250801; extra == 'dev'
|
|
140
|
+
Requires-Dist: types-pyyaml==6.0.12.20250809; extra == 'dev'
|
|
133
141
|
Requires-Dist: types-redis==4.6.0.20241004; extra == 'dev'
|
|
134
|
-
Requires-Dist: types-requests==2.32.4.
|
|
142
|
+
Requires-Dist: types-requests==2.32.4.20250809; extra == 'dev'
|
|
135
143
|
Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
|
|
136
144
|
Requires-Dist: watchdog==6.0.0; extra == 'dev'
|
|
137
145
|
Requires-Dist: yamllint==1.37.1; extra == 'dev'
|
|
@@ -142,43 +150,43 @@ Requires-Dist: mdx-truly-sane-lists==1.3; extra == 'docs'
|
|
|
142
150
|
Requires-Dist: mkdocs-autorefs==1.4.2; extra == 'docs'
|
|
143
151
|
Requires-Dist: mkdocs-awesome-nav==3.1.2; extra == 'docs'
|
|
144
152
|
Requires-Dist: mkdocs-jupyter==0.25.1; extra == 'docs'
|
|
145
|
-
Requires-Dist: mkdocs-macros-plugin==1.3.
|
|
146
|
-
Requires-Dist: mkdocs-material==9.6.
|
|
153
|
+
Requires-Dist: mkdocs-macros-plugin==1.3.9; extra == 'docs'
|
|
154
|
+
Requires-Dist: mkdocs-material==9.6.17; extra == 'docs'
|
|
147
155
|
Requires-Dist: mkdocs-minify-html-plugin==0.3.4; extra == 'docs'
|
|
148
156
|
Requires-Dist: mkdocs-open-in-new-tab==1.0.8; extra == 'docs'
|
|
149
157
|
Requires-Dist: mkdocs==1.6.1; extra == 'docs'
|
|
150
158
|
Requires-Dist: mkdocstrings-crystal==0.3.7; extra == 'docs'
|
|
151
|
-
Requires-Dist: mkdocstrings-python==1.
|
|
159
|
+
Requires-Dist: mkdocstrings-python==1.17.0; extra == 'docs'
|
|
152
160
|
Requires-Dist: mkdocstrings[crystal,python]==0.30.0; extra == 'docs'
|
|
153
161
|
Requires-Dist: natsort==8.4.0; extra == 'docs'
|
|
154
162
|
Provides-Extra: jupyter
|
|
155
163
|
Requires-Dist: ipywidgets==8.1.7; extra == 'jupyter'
|
|
156
164
|
Requires-Dist: jupyter-server==2.16.0; extra == 'jupyter'
|
|
157
|
-
Requires-Dist: jupyterlab==4.4.
|
|
158
|
-
Requires-Dist: waldiez-jupyter==0.5.
|
|
165
|
+
Requires-Dist: jupyterlab==4.4.6; extra == 'jupyter'
|
|
166
|
+
Requires-Dist: waldiez-jupyter==0.5.10; extra == 'jupyter'
|
|
159
167
|
Provides-Extra: mqtt
|
|
160
168
|
Requires-Dist: paho-mqtt<3.0,>=2.1.0; extra == 'mqtt'
|
|
161
169
|
Provides-Extra: redis
|
|
162
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
170
|
+
Requires-Dist: ag2[redis]==0.9.9; extra == 'redis'
|
|
163
171
|
Provides-Extra: runner
|
|
164
|
-
Requires-Dist: waldiez-runner==0.5.
|
|
172
|
+
Requires-Dist: waldiez-runner==0.5.10; (python_version >= '3.11') and extra == 'runner'
|
|
165
173
|
Provides-Extra: studio
|
|
166
|
-
Requires-Dist: waldiez-studio==0.5.
|
|
174
|
+
Requires-Dist: waldiez-studio==0.5.10; extra == 'studio'
|
|
167
175
|
Provides-Extra: test
|
|
168
|
-
Requires-Dist: ag2[redis]==0.9.
|
|
169
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
170
|
-
Requires-Dist: fakeredis==2.
|
|
176
|
+
Requires-Dist: ag2[redis]==0.9.9; extra == 'test'
|
|
177
|
+
Requires-Dist: ag2[websockets]==0.9.9; extra == 'test'
|
|
178
|
+
Requires-Dist: fakeredis==2.31.0; extra == 'test'
|
|
171
179
|
Requires-Dist: paho-mqtt<3.0,>=2.1.0; extra == 'test'
|
|
172
180
|
Requires-Dist: pytest-asyncio==1.1.0; extra == 'test'
|
|
173
181
|
Requires-Dist: pytest-cov==6.2.1; extra == 'test'
|
|
174
182
|
Requires-Dist: pytest-env==1.1.5; extra == 'test'
|
|
175
183
|
Requires-Dist: pytest-html==4.1.1; extra == 'test'
|
|
176
|
-
Requires-Dist: pytest-sugar==1.
|
|
184
|
+
Requires-Dist: pytest-sugar==1.1.0; extra == 'test'
|
|
177
185
|
Requires-Dist: pytest-timeout==2.4.0; extra == 'test'
|
|
178
186
|
Requires-Dist: pytest-xdist==3.8.0; extra == 'test'
|
|
179
187
|
Requires-Dist: pytest==8.4.1; extra == 'test'
|
|
180
188
|
Provides-Extra: websockets
|
|
181
|
-
Requires-Dist: ag2[websockets]==0.9.
|
|
189
|
+
Requires-Dist: ag2[websockets]==0.9.9; extra == 'websockets'
|
|
182
190
|
Description-Content-Type: text/markdown
|
|
183
191
|
|
|
184
192
|
# Waldiez
|
|
@@ -344,14 +352,6 @@ runner = WaldiezRunner.load(Path(flow_path))
|
|
|
344
352
|
runner.run(output_path=output_path)
|
|
345
353
|
```
|
|
346
354
|
|
|
347
|
-
### Tools
|
|
348
|
-
|
|
349
|
-
- [ag2 (formerly AutoGen)](https://github.com/ag2ai/ag2)
|
|
350
|
-
- [juptytext](https://github.com/mwouts/jupytext)
|
|
351
|
-
- [pydantic](https://github.com/pydantic/pydantic)
|
|
352
|
-
- [typer](https://github.com/fastapi/typer)
|
|
353
|
-
- [asyncer](https://github.com/fastapi/asyncer)
|
|
354
|
-
|
|
355
355
|
## Known Conflicts
|
|
356
356
|
|
|
357
357
|
- **autogen-agentchat**: This package conflicts with `ag2`. Ensure that `autogen-agentchat` is uninstalled before installing `waldiez`. If you have already installed `autogen-agentchat`, you can uninstall it with the following command:
|
|
@@ -161,14 +161,6 @@ runner = WaldiezRunner.load(Path(flow_path))
|
|
|
161
161
|
runner.run(output_path=output_path)
|
|
162
162
|
```
|
|
163
163
|
|
|
164
|
-
### Tools
|
|
165
|
-
|
|
166
|
-
- [ag2 (formerly AutoGen)](https://github.com/ag2ai/ag2)
|
|
167
|
-
- [juptytext](https://github.com/mwouts/jupytext)
|
|
168
|
-
- [pydantic](https://github.com/pydantic/pydantic)
|
|
169
|
-
- [typer](https://github.com/fastapi/typer)
|
|
170
|
-
- [asyncer](https://github.com/fastapi/asyncer)
|
|
171
|
-
|
|
172
164
|
## Known Conflicts
|
|
173
165
|
|
|
174
166
|
- **autogen-agentchat**: This package conflicts with `ag2`. Ensure that `autogen-agentchat` is uninstalled before installing `waldiez`. If you have already installed `autogen-agentchat`, you can uninstall it with the following command:
|
|
@@ -27,11 +27,10 @@ classifiers = [
|
|
|
27
27
|
]
|
|
28
28
|
|
|
29
29
|
dependencies = [
|
|
30
|
-
"ag2[openai]==0.9.
|
|
30
|
+
"ag2[openai]==0.9.9",
|
|
31
31
|
"aiocsv==1.3.2",
|
|
32
32
|
"aiofiles==24.1.0",
|
|
33
33
|
"aiosqlite==0.21.0",
|
|
34
|
-
"asyncer==0.0.8",
|
|
35
34
|
"numpy<=2.3.2",
|
|
36
35
|
"nest_asyncio==1.6.0",
|
|
37
36
|
"graphviz<=0.21",
|
|
@@ -40,10 +39,11 @@ dependencies = [
|
|
|
40
39
|
"pip>=25.1.1",
|
|
41
40
|
"jupytext",
|
|
42
41
|
"parso==0.8.4",
|
|
43
|
-
"
|
|
42
|
+
"psutil==7.0.0",
|
|
43
|
+
"rpds-py==0.27.0",
|
|
44
44
|
"platformdirs==4.3.8",
|
|
45
45
|
"pydantic>=2.10.2,<3",
|
|
46
|
-
# ag2[together]==0.9.
|
|
46
|
+
# ag2[together]==0.9.9 depends on together>=1.2
|
|
47
47
|
# together>=1.2 depends on typer>=0.9,<0.16
|
|
48
48
|
"typer>=0.9.0,<1",
|
|
49
49
|
"click<8.2",
|
|
@@ -60,6 +60,8 @@ dependencies = [
|
|
|
60
60
|
# ),
|
|
61
61
|
# ^^
|
|
62
62
|
"httpx<1",
|
|
63
|
+
"watchdog==6.0.0",
|
|
64
|
+
"websockets==15.0.1"
|
|
63
65
|
]
|
|
64
66
|
dynamic = ["version", "description", "authors", "urls", "keywords"]
|
|
65
67
|
name = "waldiez"
|
|
@@ -72,70 +74,84 @@ waldiez = "waldiez.cli:app"
|
|
|
72
74
|
[project.optional-dependencies]
|
|
73
75
|
# stream-io-extensions: redis, websockets, mqtt
|
|
74
76
|
redis = [
|
|
75
|
-
"ag2[redis]==0.9.
|
|
77
|
+
"ag2[redis]==0.9.9",
|
|
76
78
|
]
|
|
77
79
|
websockets = [
|
|
78
|
-
"ag2[websockets]==0.9.
|
|
80
|
+
"ag2[websockets]==0.9.9",
|
|
79
81
|
]
|
|
80
82
|
mqtt = [
|
|
81
83
|
"paho-mqtt>=2.1.0,<3.0",
|
|
82
84
|
]
|
|
83
85
|
# jupyterlab extension
|
|
84
86
|
jupyter = [
|
|
85
|
-
"waldiez_jupyter==0.5.
|
|
86
|
-
"jupyterlab==4.4.
|
|
87
|
+
"waldiez_jupyter==0.5.10",
|
|
88
|
+
"jupyterlab==4.4.6",
|
|
87
89
|
"ipywidgets==8.1.7",
|
|
88
90
|
"jupyter_server==2.16.0",
|
|
89
91
|
]
|
|
90
92
|
runner = [
|
|
91
|
-
"waldiez_runner==0.5.
|
|
93
|
+
"waldiez_runner==0.5.10; python_version >= '3.11'",
|
|
92
94
|
]
|
|
93
95
|
studio = [
|
|
94
|
-
"waldiez_studio==0.5.
|
|
96
|
+
"waldiez_studio==0.5.10",
|
|
95
97
|
]
|
|
96
98
|
ag2_extras = [
|
|
97
|
-
"ag2[anthropic]==0.9.
|
|
98
|
-
"ag2[autobuild]==0.9.
|
|
99
|
-
"ag2[bedrock]==0.9.
|
|
100
|
-
"ag2[blendsearch]==0.9.
|
|
101
|
-
"ag2[cohere]==0.9.
|
|
102
|
-
"ag2[commsagent-discord]==0.9.
|
|
103
|
-
"ag2[commsagent-slack]==0.9.
|
|
104
|
-
"ag2[commsagent-telegram]==0.9.
|
|
105
|
-
"ag2[crawl4ai]==0.9.
|
|
106
|
-
"ag2[duckduckgo]==0.9.
|
|
107
|
-
"ag2[gemini-realtime]==0.9.
|
|
108
|
-
"ag2[gemini-realtime]==0.9.
|
|
109
|
-
"ag2[gemini]==0.9.
|
|
110
|
-
"ag2[gemini]==0.9.
|
|
111
|
-
"ag2[google-api]==0.9.
|
|
112
|
-
"ag2[google-client]==0.9.
|
|
113
|
-
"ag2[google-search]==0.9.
|
|
114
|
-
"ag2[groq]==0.9.
|
|
115
|
-
"ag2[interop-crewai]==0.9.
|
|
116
|
-
"ag2[interop-langchain]==0.9.
|
|
117
|
-
"ag2[lmm]==0.9.
|
|
118
|
-
# "ag2[mcp-proxy-gen]==0.9.
|
|
119
|
-
"ag2[mcp]==0.9.
|
|
120
|
-
"ag2[mistral]==0.9.
|
|
121
|
-
"ag2[neo4j]==0.9.
|
|
122
|
-
"ag2[neo4j]==0.9.
|
|
123
|
-
"ag2[ollama]==0.9.
|
|
124
|
-
"ag2[openai-realtime]==0.9.
|
|
125
|
-
"ag2[
|
|
126
|
-
"ag2[
|
|
127
|
-
"ag2[
|
|
128
|
-
#
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
99
|
+
"ag2[anthropic]==0.9.9",
|
|
100
|
+
"ag2[autobuild]==0.9.9",
|
|
101
|
+
"ag2[bedrock]==0.9.9",
|
|
102
|
+
"ag2[blendsearch]==0.9.9",
|
|
103
|
+
"ag2[cohere]==0.9.9",
|
|
104
|
+
"ag2[commsagent-discord]==0.9.9",
|
|
105
|
+
"ag2[commsagent-slack]==0.9.9",
|
|
106
|
+
"ag2[commsagent-telegram]==0.9.9",
|
|
107
|
+
"ag2[crawl4ai]==0.9.9",
|
|
108
|
+
"ag2[duckduckgo]==0.9.9",
|
|
109
|
+
# "ag2[gemini-realtime]==0.9.9;sys_platform != 'win32'",
|
|
110
|
+
# "ag2[gemini-realtime]==0.9.9;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
111
|
+
# "ag2[gemini]==0.9.9;sys_platform != 'win32'",
|
|
112
|
+
# "ag2[gemini]==0.9.9;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
113
|
+
"ag2[google-api]==0.9.9",
|
|
114
|
+
"ag2[google-client]==0.9.9",
|
|
115
|
+
"ag2[google-search]==0.9.9",
|
|
116
|
+
"ag2[groq]==0.9.9",
|
|
117
|
+
"ag2[interop-crewai]==0.9.9",
|
|
118
|
+
"ag2[interop-langchain]==0.9.9",
|
|
119
|
+
"ag2[lmm]==0.9.9",
|
|
120
|
+
# "ag2[mcp-proxy-gen]==0.9.9",
|
|
121
|
+
"ag2[mcp]==0.9.9",
|
|
122
|
+
"ag2[mistral]==0.9.9",
|
|
123
|
+
"ag2[neo4j]==0.9.9;sys_platform != 'win32'",
|
|
124
|
+
"ag2[neo4j]==0.9.9;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
125
|
+
"ag2[ollama]==0.9.9",
|
|
126
|
+
"ag2[openai-realtime]==0.9.9",
|
|
127
|
+
"ag2[redis]==0.9.9",
|
|
128
|
+
"ag2[tavily]==0.9.9",
|
|
129
|
+
# "ag2[rag]==0.9.9",
|
|
130
|
+
# rag gives:
|
|
131
|
+
# llama-index-embeddings-huggingface 0.6.0 depends on llama-index-core<0.14 and >=0.13.0
|
|
132
|
+
# llama-index-llms-langchain 0.7.0 depends on llama-index-core<0.14 and >=0.13.0
|
|
133
|
+
# llama-index-vector-stores-chroma 0.4.1 depends on llama-index-core<0.13.0 and >=0.12.0
|
|
134
|
+
"docling>=2.15.1,<3",
|
|
135
|
+
"selenium>=4.28.1,<5",
|
|
136
|
+
"webdriver-manager==4.0.2",
|
|
137
|
+
"chromadb>=0.5,<2",
|
|
138
|
+
"llama-index>=0.12,<1",
|
|
139
|
+
"requests>=2.32.3,<3",
|
|
140
|
+
"llama-index-embeddings-huggingface",
|
|
141
|
+
"llama-index-llms-langchain",
|
|
142
|
+
"llama-index-vector-stores-chroma",
|
|
143
|
+
"llama-index-vector-stores-mongodb",
|
|
144
|
+
# "ag2[retrievechat-couchbase]==0.9.9",
|
|
145
|
+
# "ag2[retrievechat-mongodb]==0.9.9",
|
|
146
|
+
# "ag2[retrievechat-pgvector]==0.9.9",
|
|
147
|
+
# "ag2[retrievechat-qdrant]==0.9.9",
|
|
148
|
+
# "ag2[retrievechat]==0.9.9",
|
|
149
|
+
"ag2[together]==0.9.9;sys_platform != 'win32'",
|
|
150
|
+
"ag2[together]==0.9.9;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
151
|
+
"ag2[twilio]==0.9.9",
|
|
152
|
+
"ag2[websockets]==0.9.9",
|
|
153
|
+
"ag2[websurfer]==0.9.9",
|
|
154
|
+
"ag2[wikipedia]==0.9.9",
|
|
139
155
|
"chromadb>=0.5.10;sys_platform != 'win32'",
|
|
140
156
|
"chromadb>=0.5.10;sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
141
157
|
"couchbase>=4.4.0",
|
|
@@ -153,18 +169,18 @@ ag2_extras = [
|
|
|
153
169
|
"qdrant-client[fastembed];sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64'",
|
|
154
170
|
]
|
|
155
171
|
dev = [
|
|
156
|
-
"ag2[redis]==0.9.
|
|
157
|
-
"ag2[websockets]==0.9.
|
|
172
|
+
"ag2[redis]==0.9.9",
|
|
173
|
+
"ag2[websockets]==0.9.9",
|
|
158
174
|
"autoflake==2.3.1",
|
|
159
175
|
"bandit==1.8.6",
|
|
160
176
|
"black[jupyter]==25.1.0",
|
|
161
177
|
"build==1.3.0",
|
|
162
|
-
"fakeredis==2.
|
|
178
|
+
"fakeredis==2.31.0",
|
|
163
179
|
"flake8==7.3.0",
|
|
164
|
-
"jsonschema==4.25.
|
|
165
|
-
"jupyterlab==4.4.
|
|
180
|
+
"jsonschema==4.25.1",
|
|
181
|
+
"jupyterlab==4.4.6",
|
|
166
182
|
"notebook-shim>=0.2.4",
|
|
167
|
-
"fastjsonschema>=2.21.
|
|
183
|
+
"fastjsonschema>=2.21.2",
|
|
168
184
|
"jupyter_server==2.16.0",
|
|
169
185
|
"nbclient>=0.10.2",
|
|
170
186
|
"nbformat>=5.10.4",
|
|
@@ -175,17 +191,18 @@ dev = [
|
|
|
175
191
|
"paho-mqtt>=2.1.0,<3.0",
|
|
176
192
|
"pandas-stubs==2.3.0.250703",
|
|
177
193
|
"nodeenv>=1.9.1",
|
|
178
|
-
"pre-commit==4.
|
|
194
|
+
"pre-commit==4.3.0",
|
|
179
195
|
"pydocstyle==6.3.0",
|
|
180
|
-
"pylint==3.3.
|
|
196
|
+
"pylint==3.3.8",
|
|
181
197
|
"python-dotenv>=1.1.1",
|
|
182
|
-
"ruff==0.12.
|
|
183
|
-
"types-aiofiles==24.1.0.
|
|
184
|
-
"types-
|
|
185
|
-
"types-
|
|
198
|
+
"ruff==0.12.9",
|
|
199
|
+
"types-aiofiles==24.1.0.20250809",
|
|
200
|
+
"types-jsonschema==4.25.0.20250809",
|
|
201
|
+
"types-pyyaml==6.0.12.20250809",
|
|
202
|
+
"types-psutil==7.0.0.20250801",
|
|
186
203
|
"types-redis==4.6.0.20241004",
|
|
187
204
|
"types-toml==0.10.8.20240310",
|
|
188
|
-
"types-requests==2.32.4.
|
|
205
|
+
"types-requests==2.32.4.20250809",
|
|
189
206
|
"toml==0.10.2; python_version <= '3.10'",
|
|
190
207
|
"watchdog==6.0.0",
|
|
191
208
|
"yamllint==1.37.1",
|
|
@@ -197,27 +214,27 @@ docs = [
|
|
|
197
214
|
"mkdocs==1.6.1",
|
|
198
215
|
"mkdocs-autorefs==1.4.2",
|
|
199
216
|
"mkdocs-jupyter==0.25.1",
|
|
200
|
-
"mkdocs-macros-plugin==1.3.
|
|
201
|
-
"mkdocs-material==9.6.
|
|
217
|
+
"mkdocs-macros-plugin==1.3.9",
|
|
218
|
+
"mkdocs-material==9.6.17",
|
|
202
219
|
"mkdocs-minify-html-plugin==0.3.4",
|
|
203
220
|
"mkdocstrings[crystal,python]==0.30.0",
|
|
204
221
|
"mkdocstrings-crystal==0.3.7",
|
|
205
|
-
"mkdocstrings-python==1.
|
|
222
|
+
"mkdocstrings-python==1.17.0",
|
|
206
223
|
"mkdocs-awesome-nav==3.1.2",
|
|
207
224
|
"mkdocs-open-in-new-tab==1.0.8",
|
|
208
225
|
"natsort==8.4.0",
|
|
209
226
|
]
|
|
210
227
|
test = [
|
|
211
|
-
"ag2[redis]==0.9.
|
|
212
|
-
"ag2[websockets]==0.9.
|
|
213
|
-
"fakeredis==2.
|
|
228
|
+
"ag2[redis]==0.9.9",
|
|
229
|
+
"ag2[websockets]==0.9.9",
|
|
230
|
+
"fakeredis==2.31.0",
|
|
214
231
|
"paho-mqtt>=2.1.0,<3.0",
|
|
215
232
|
"pytest==8.4.1",
|
|
216
233
|
"pytest-asyncio==1.1.0",
|
|
217
234
|
"pytest-cov==6.2.1",
|
|
218
235
|
"pytest-env==1.1.5",
|
|
219
236
|
"pytest-html==4.1.1",
|
|
220
|
-
"pytest-sugar==1.
|
|
237
|
+
"pytest-sugar==1.1.0",
|
|
221
238
|
"pytest-timeout==2.4.0",
|
|
222
239
|
"pytest-xdist==3.8.0",
|
|
223
240
|
]
|
|
@@ -287,9 +304,9 @@ test-running = [
|
|
|
287
304
|
"hatch run pre-test",
|
|
288
305
|
"pytest -c pyproject.toml --cov=waldiez/running --cov-branch --cov-report=term-missing:skip-covered -vv tests/running"
|
|
289
306
|
]
|
|
290
|
-
test-
|
|
307
|
+
test-ws = [
|
|
291
308
|
"hatch run pre-test",
|
|
292
|
-
"pytest -c pyproject.toml --cov=waldiez/
|
|
309
|
+
"pytest -c pyproject.toml --cov=waldiez/ws --cov-branch --cov-report=term-missing:skip-covered -vv tests/ws"
|
|
293
310
|
]
|
|
294
311
|
|
|
295
312
|
format-black = "black --config pyproject.toml waldiez tests scripts"
|
|
@@ -503,7 +520,7 @@ exclude_dirs = [
|
|
|
503
520
|
# B602, B603: allow shell=True (subprocess, popen)
|
|
504
521
|
skips = ["B104", "B110", "B404", "B602", "B603"]
|
|
505
522
|
[tool.bandit.assert_used]
|
|
506
|
-
skips = ["*_test.py", "*/test_*.py"]
|
|
523
|
+
skips = ["*_test.py", "*/test_*.py", "./tests/**/*.py"]
|
|
507
524
|
|
|
508
525
|
# ruff
|
|
509
526
|
[tool.ruff]
|
|
@@ -565,6 +582,7 @@ pythonpath = ["."]
|
|
|
565
582
|
#
|
|
566
583
|
env = [
|
|
567
584
|
"WALDIEZ_TESTING=1",
|
|
585
|
+
"PYTHONUNBUFFERED=1"
|
|
568
586
|
]
|
|
569
587
|
#
|
|
570
588
|
# coverage
|