waldiez 0.3.7__tar.gz → 0.3.9__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.3.7 → waldiez-0.3.9}/PKG-INFO +3 -3
- {waldiez-0.3.7 → waldiez-0.3.9}/pyproject.toml +2 -2
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/_version.py +1 -1
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/utils/flow_content.py +9 -2
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/model/model.py +3 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/model/model_data.py +2 -1
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/running/running.py +3 -1
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/utils/cli_extras/studio.py +1 -1
- {waldiez-0.3.7 → waldiez-0.3.9}/.gitignore +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/LICENSE +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/NOTICE.md +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/README.md +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/__main__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/cli.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporter.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/agent_exporter.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/agent_class_name.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/agent_imports.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/code_execution.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/group_manager.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/rag_user/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/rag_user/chroma_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/rag_user/mongo_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/rag_user/pgvector_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/rag_user/qdrant_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/rag_user/rag_user.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/rag_user/vector_db.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/reasoning.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/swarm_agent.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/teachability.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/agent/utils/termination_message.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/agent_position.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/base_exporter.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/export_position.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/import_position.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/mixin.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/utils/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/utils/comments.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/utils/naming.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/utils/path_check.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/base/utils/to_string.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/chats/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/chats/chats_exporter.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/chats/utils/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/chats/utils/common.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/chats/utils/nested.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/chats/utils/sequential.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/chats/utils/single_chat.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/chats/utils/swarm.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/flow_exporter.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/utils/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/utils/agent_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/utils/chat_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/utils/def_main.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/utils/flow_names.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/utils/importing_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/flow/utils/logging_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/models/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/models/models_exporter.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/models/utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/skills/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/skills/skills_exporter.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/exporting/skills/utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agent/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agent/agent.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agent/agent_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agent/code_execution.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agent/linked_skill.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agent/nested_chat.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agent/teachability.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agent/termination_message.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/agents.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/assistant/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/assistant/assistant.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/assistant/assistant_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/group_manager/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/group_manager/group_manager.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/group_manager/group_manager_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/group_manager/speakers.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/rag_user/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/rag_user/rag_user.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/rag_user/rag_user_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/rag_user/retrieve_config.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/rag_user/vector_db_config.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/reasoning/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/reasoning/reasoning_agent.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/reasoning/reasoning_agent_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/swarm_agent/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/swarm_agent/after_work.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/swarm_agent/on_condition.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/swarm_agent/on_condition_available.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/swarm_agent/on_condition_target.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/swarm_agent/swarm_agent.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/swarm_agent/swarm_agent_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/swarm_agent/update_system_message.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/user_proxy/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/user_proxy/user_proxy.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/user_proxy/user_proxy_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/chat/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/chat/chat.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/chat/chat_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/chat/chat_message.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/chat/chat_nested.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/chat/chat_summary.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/common/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/common/base.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/common/date_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/common/dict_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/common/method_utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/flow/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/flow/flow.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/flow/flow_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/flow/utils.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/model/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/skill/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/skill/skill.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/skill/skill_data.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/waldiez.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/py.typed +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/runner.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/running/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/running/environment.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/running/gen_seq_diagram.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/utils/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/utils/cli_extras/__init__.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/utils/cli_extras/jupyter.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/utils/conflict_checker.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/utils/flaml_warnings.py +0 -0
- {waldiez-0.3.7 → waldiez-0.3.9}/waldiez/utils/pysqlite3_checker.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waldiez
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: waldiez
|
|
5
5
|
Project-URL: homepage, https://waldiez.github.io/waldiez/python
|
|
6
6
|
Project-URL: repository, https://github.com/waldiez/python.git
|
|
@@ -81,9 +81,9 @@ Requires-Dist: mkdocstrings-python==1.13.0; extra == 'docs'
|
|
|
81
81
|
Requires-Dist: mkdocstrings[crystal,python]==0.27.0; extra == 'docs'
|
|
82
82
|
Provides-Extra: jupyter
|
|
83
83
|
Requires-Dist: jupyterlab>=4.3.0; extra == 'jupyter'
|
|
84
|
-
Requires-Dist: waldiez-jupyter==0.3.
|
|
84
|
+
Requires-Dist: waldiez-jupyter==0.3.9; extra == 'jupyter'
|
|
85
85
|
Provides-Extra: studio
|
|
86
|
-
Requires-Dist: waldiez-studio==0.3.
|
|
86
|
+
Requires-Dist: waldiez-studio==0.3.9; extra == 'studio'
|
|
87
87
|
Provides-Extra: test
|
|
88
88
|
Requires-Dist: pytest-asyncio==0.25.2; extra == 'test'
|
|
89
89
|
Requires-Dist: pytest-cov==6.0.0; extra == 'test'
|
|
@@ -53,10 +53,10 @@ exclude = [ "**/example.py" ]
|
|
|
53
53
|
|
|
54
54
|
[project.optional-dependencies]
|
|
55
55
|
studio = [
|
|
56
|
-
"waldiez_studio==0.3.
|
|
56
|
+
"waldiez_studio==0.3.9",
|
|
57
57
|
]
|
|
58
58
|
jupyter = [
|
|
59
|
-
"waldiez_jupyter==0.3.
|
|
59
|
+
"waldiez_jupyter==0.3.9",
|
|
60
60
|
"jupyterlab>=4.3.0",
|
|
61
61
|
]
|
|
62
62
|
dev = [
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# SPDX-License-Identifier: Apache-2.0.
|
|
2
2
|
# Copyright (c) 2024 - 2025 Waldiez and contributors.
|
|
3
3
|
# flake8: noqa E501
|
|
4
|
+
# pylint: disable=line-too-long
|
|
4
5
|
"""Utils to generate the content of a flow."""
|
|
5
6
|
|
|
6
7
|
from typing import Callable, Dict, List, Optional
|
|
@@ -56,9 +57,8 @@ def get_ipynb_content_start(
|
|
|
56
57
|
content += "import sys\n"
|
|
57
58
|
requirements = " ".join(waldiez.requirements)
|
|
58
59
|
if requirements:
|
|
59
|
-
# pylint: disable=line-too-long
|
|
60
60
|
# fmt: off
|
|
61
|
-
content += "# " + f"!{{sys.executable}} -m pip install -q {requirements}" + "\n"
|
|
61
|
+
content += "# " + f"!{{sys.executable}} -m pip install -q {requirements}" + "\n"
|
|
62
62
|
# fmt: on
|
|
63
63
|
content += "# flake8: noqa E501"
|
|
64
64
|
content += get_pylint_ignore_comment(True)
|
|
@@ -149,5 +149,12 @@ def get_after_run_content(
|
|
|
149
149
|
{space}{space}{space}os.rename("tree_of_thoughts.png", new_name)
|
|
150
150
|
{space}except BaseException:
|
|
151
151
|
{space}{space}pass
|
|
152
|
+
{space}# save the tree to json
|
|
153
|
+
{space}try:
|
|
154
|
+
{space}{space}data = {agent_name}._root.to_dict() # pylint: disable=protected-access
|
|
155
|
+
{space}{space}with open("{agent_name}_reasoning_tree.json", "w", encoding="utf-8") as f:
|
|
156
|
+
{space}{space}{space}json.dump(data, f)
|
|
157
|
+
{space}except BaseException:
|
|
158
|
+
{space}{space}pass
|
|
152
159
|
"""
|
|
153
160
|
return content
|
|
@@ -12,6 +12,7 @@ from ..common import WaldiezBase, now
|
|
|
12
12
|
from .model_data import WaldiezModelAPIType, WaldiezModelData
|
|
13
13
|
|
|
14
14
|
DEFAULT_BASE_URLS: Dict[WaldiezModelAPIType, str] = {
|
|
15
|
+
"deepseek": "https://api.deepseek.com/v1",
|
|
15
16
|
"google": "https://generativelanguage.googleapis.com/v1beta",
|
|
16
17
|
"anthropic": "https://api.anthropic.com/v1",
|
|
17
18
|
"mistral": "https://api.mistral.ai/v1",
|
|
@@ -110,6 +111,7 @@ class WaldiezModel(WaldiezBase):
|
|
|
110
111
|
|
|
111
112
|
- openai: 'OPENAI_API_KEY',
|
|
112
113
|
- azure: 'AZURE_API_KEY',
|
|
114
|
+
- deepseek: 'DEEPSEEK_API_KEY',
|
|
113
115
|
- google: 'GOOGLE_GEMINI_API_KEY',
|
|
114
116
|
- anthropic: 'ANTHROPIC_API_KEY',
|
|
115
117
|
- mistral: 'MISTRAL_API_KEY',
|
|
@@ -133,6 +135,7 @@ class WaldiezModel(WaldiezBase):
|
|
|
133
135
|
|
|
134
136
|
- openai: 'OPENAI_API_KEY',
|
|
135
137
|
- azure: 'AZURE_API_KEY',
|
|
138
|
+
- deepseek: 'DEEPSEEK_API_KEY',
|
|
136
139
|
- google: 'GOOGLE_GEMINI_API_KEY',
|
|
137
140
|
- anthropic: 'ANTHROPIC_API_KEY',
|
|
138
141
|
- mistral: 'MISTRAL_API_KEY',
|
|
@@ -13,6 +13,7 @@ from ..common import WaldiezBase
|
|
|
13
13
|
WaldiezModelAPIType = Literal[
|
|
14
14
|
"openai",
|
|
15
15
|
"azure",
|
|
16
|
+
"deepseek",
|
|
16
17
|
"google",
|
|
17
18
|
"anthropic",
|
|
18
19
|
"mistral",
|
|
@@ -52,7 +53,7 @@ class WaldiezModelData(WaldiezBase):
|
|
|
52
53
|
The base url of the model, by default None.
|
|
53
54
|
api_key : Optional[str]
|
|
54
55
|
The api key to use with the model, by default None.
|
|
55
|
-
api_type : Literal["openai","azure","google","anthropic","mistral","groq","together","nim","other"]
|
|
56
|
+
api_type : Literal["openai","azure","deepseek","google","anthropic","mistral","groq","together","nim","other"]
|
|
56
57
|
The api type of the model.
|
|
57
58
|
api_version : Optional[str]
|
|
58
59
|
The api version of the model, by default None.
|
|
@@ -259,7 +259,9 @@ def copy_results(
|
|
|
259
259
|
if item.is_file():
|
|
260
260
|
# let's also copy the tree of thoughts image
|
|
261
261
|
# to the output directory
|
|
262
|
-
if item.name.endswith("tree_of_thoughts.png")
|
|
262
|
+
if item.name.endswith("tree_of_thoughts.png") or item.name.endswith(
|
|
263
|
+
"reasoning_tree.json"
|
|
264
|
+
):
|
|
263
265
|
shutil.copy(item, output_dir / item.name)
|
|
264
266
|
shutil.copy(item, destination_dir)
|
|
265
267
|
else:
|
|
@@ -13,7 +13,7 @@ HAVE_STUDIO = False
|
|
|
13
13
|
studio_app: Callable[..., Any] | None = None
|
|
14
14
|
|
|
15
15
|
try:
|
|
16
|
-
from waldiez_studio.cli import run # type: ignore[
|
|
16
|
+
from waldiez_studio.cli import run # type: ignore[import-untyped, unused-ignore, import-not-found] # noqa
|
|
17
17
|
|
|
18
18
|
studio_app = run
|
|
19
19
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{waldiez-0.3.7 → waldiez-0.3.9}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|