waldiez 0.4.1__py3-none-any.whl → 0.4.3__py3-none-any.whl
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/_version.py +1 -1
- waldiez/exporting/agent/utils/captain_agent.py +17 -8
- waldiez/exporting/agent/utils/rag_user/vector_db.py +1 -1
- waldiez/exporting/base/base_exporter.py +1 -1
- waldiez/exporting/chats/chats_exporter.py +1 -1
- waldiez/exporting/chats/utils/single_chat.py +1 -1
- waldiez/exporting/chats/utils/swarm.py +1 -1
- waldiez/exporting/flow/flow_exporter.py +1 -1
- waldiez/exporting/flow/utils/flow_content.py +6 -6
- waldiez/exporting/models/utils.py +4 -0
- waldiez/exporting/skills/utils.py +2 -2
- waldiez/models/agents/agent/agent.py +1 -2
- waldiez/models/agents/rag_user/vector_db_config.py +1 -1
- waldiez/models/model/model.py +1 -1
- waldiez/models/model/model_data.py +1 -1
- waldiez/models/waldiez.py +1 -1
- waldiez/runner.py +9 -4
- waldiez/utils/cli_extras/studio.py +2 -1
- waldiez/utils/pysqlite3_checker.py +6 -2
- {waldiez-0.4.1.dist-info → waldiez-0.4.3.dist-info}/METADATA +53 -47
- {waldiez-0.4.1.dist-info → waldiez-0.4.3.dist-info}/RECORD +25 -25
- {waldiez-0.4.1.dist-info → waldiez-0.4.3.dist-info}/WHEEL +0 -0
- {waldiez-0.4.1.dist-info → waldiez-0.4.3.dist-info}/entry_points.txt +0 -0
- {waldiez-0.4.1.dist-info → waldiez-0.4.3.dist-info}/licenses/LICENSE +0 -0
- {waldiez-0.4.1.dist-info → waldiez-0.4.3.dist-info}/licenses/NOTICE.md +0 -0
waldiez/_version.py
CHANGED
|
@@ -102,12 +102,12 @@ def generate_nested_config(
|
|
|
102
102
|
with open(
|
|
103
103
|
config_file_or_env_path, "w", encoding="utf-8", newline="\n"
|
|
104
104
|
) as f:
|
|
105
|
-
json.dump(
|
|
105
|
+
json.dump(llm_config, f, ensure_ascii=False, indent=4)
|
|
106
106
|
nested_config = {
|
|
107
107
|
"autobuild_init_config": {
|
|
108
108
|
"config_file_or_env": config_file_or_env_name,
|
|
109
|
-
"builder_model": llm_config["model"],
|
|
110
|
-
"agent_model": llm_config["model"],
|
|
109
|
+
"builder_model": llm_config["config_list"][0]["model"],
|
|
110
|
+
"agent_model": llm_config["config_list"][0]["model"],
|
|
111
111
|
},
|
|
112
112
|
"autobuild_build_config": get_auto_build_build_config(
|
|
113
113
|
agent, llm_config
|
|
@@ -140,20 +140,29 @@ def get_llm_config(
|
|
|
140
140
|
temperature: Optional[float] = 1
|
|
141
141
|
top_p: Optional[float] = 0.95
|
|
142
142
|
max_tokens: Optional[int] = 2048
|
|
143
|
+
config_dict: Dict[str, Any] = {}
|
|
143
144
|
if agent.data.model_ids:
|
|
144
145
|
waldiez_model = get_waldiez_model(agent.data.model_ids[0], all_models)
|
|
145
146
|
llm_config = waldiez_model.get_llm_config(skip_price=True)
|
|
146
147
|
for key in ["temperature", "top_p", "max_tokens"]:
|
|
147
148
|
if key not in llm_config:
|
|
148
149
|
llm_config[key] = None
|
|
149
|
-
|
|
150
|
+
temp = llm_config.pop("temperature", None)
|
|
151
|
+
config_dict = {
|
|
152
|
+
"config_list": [llm_config],
|
|
153
|
+
}
|
|
154
|
+
if temp is not None:
|
|
155
|
+
config_dict["temperature"] = temp
|
|
156
|
+
return config_dict
|
|
150
157
|
config_dict = {
|
|
151
158
|
"model": model_name,
|
|
152
|
-
"temperature": temperature,
|
|
153
159
|
"top_p": top_p,
|
|
154
160
|
"max_tokens": max_tokens,
|
|
155
161
|
}
|
|
156
|
-
return
|
|
162
|
+
return {
|
|
163
|
+
"config_list": [config_dict],
|
|
164
|
+
"temperature": temperature,
|
|
165
|
+
}
|
|
157
166
|
|
|
158
167
|
|
|
159
168
|
def get_auto_build_build_config(
|
|
@@ -195,8 +204,8 @@ def get_auto_build_build_config(
|
|
|
195
204
|
return {
|
|
196
205
|
"default_llm_config": {
|
|
197
206
|
"temperature": llm_config["temperature"],
|
|
198
|
-
"top_p": llm_config["top_p"],
|
|
199
|
-
"max_tokens": llm_config["max_tokens"],
|
|
207
|
+
"top_p": llm_config["config_list"][0]["top_p"],
|
|
208
|
+
"max_tokens": llm_config["config_list"][0]["max_tokens"],
|
|
200
209
|
},
|
|
201
210
|
"code_execution_config": code_execution_config,
|
|
202
211
|
"coding": coding,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SPDX-License-Identifier: Apache-2.0.
|
|
2
2
|
# Copyright (c) 2024 - 2025 Waldiez and contributors.
|
|
3
|
-
# flake8: noqa E501
|
|
3
|
+
# flake8: noqa: E501
|
|
4
4
|
# pylint: disable=line-too-long
|
|
5
5
|
"""Utils to generate the content of a flow."""
|
|
6
6
|
|
|
@@ -22,7 +22,7 @@ def get_py_content_start(waldiez: Waldiez) -> str:
|
|
|
22
22
|
The first part of the python script.
|
|
23
23
|
"""
|
|
24
24
|
content = "#!/usr/bin/env python\n"
|
|
25
|
-
content += "# flake8: noqa E501\n"
|
|
25
|
+
content += "# flake8: noqa: E501\n"
|
|
26
26
|
content += get_pylint_ignore_comment(False)
|
|
27
27
|
content += "# cspell: disable\n"
|
|
28
28
|
content += f'"""{waldiez.name}.' + "\n\n"
|
|
@@ -60,7 +60,7 @@ def get_ipynb_content_start(
|
|
|
60
60
|
# fmt: off
|
|
61
61
|
content += "# " + f"!{{sys.executable}} -m pip install -q {requirements}" + "\n"
|
|
62
62
|
# fmt: on
|
|
63
|
-
content += "# flake8: noqa E501"
|
|
63
|
+
content += "# flake8: noqa: E501"
|
|
64
64
|
content += get_pylint_ignore_comment(True)
|
|
65
65
|
content += "# cspell: disable\n"
|
|
66
66
|
return content
|
|
@@ -135,8 +135,8 @@ def get_after_run_content(
|
|
|
135
135
|
str
|
|
136
136
|
The content to add after the flow is run.
|
|
137
137
|
"""
|
|
138
|
-
# if
|
|
139
|
-
# visualize_tree(
|
|
138
|
+
# if the flow has a reasoning agents, we add
|
|
139
|
+
# agent.visualize_tree() for each agent
|
|
140
140
|
content = ""
|
|
141
141
|
tab = " "
|
|
142
142
|
space = tab * tabs
|
|
@@ -146,7 +146,7 @@ def get_after_run_content(
|
|
|
146
146
|
content += f"""
|
|
147
147
|
{space}# pylint: disable=broad-except,too-many-try-statements
|
|
148
148
|
{space}try:
|
|
149
|
-
{space}{tab}
|
|
149
|
+
{space}{tab}{agent_name}.visualize_tree()
|
|
150
150
|
{space}{tab}if os.path.exists("tree_of_thoughts.png"):
|
|
151
151
|
{space}{tab}{tab}new_name = "{agent_name}_tree_of_thoughts.png"
|
|
152
152
|
{space}{tab}{tab}os.rename("tree_of_thoughts.png", new_name)
|
|
@@ -92,9 +92,11 @@ def get_agent_llm_config_arg(
|
|
|
92
92
|
content = f"{tab}llm_config=" + "{\n"
|
|
93
93
|
content += f'{tab} "config_list": ['
|
|
94
94
|
got_at_least_one_model = False
|
|
95
|
+
temperature: Optional[float] = None
|
|
95
96
|
for model_id in agent.data.model_ids:
|
|
96
97
|
model = next((m for m in all_models if m.id == model_id), None)
|
|
97
98
|
if model is not None:
|
|
99
|
+
temperature = model.data.temperature
|
|
98
100
|
model_name = model_names[model_id]
|
|
99
101
|
content += "\n" + f"{tab} {model_name}_llm_config,"
|
|
100
102
|
got_at_least_one_model = True
|
|
@@ -102,6 +104,8 @@ def get_agent_llm_config_arg(
|
|
|
102
104
|
return f"{tab}llm_config=False," + "\n"
|
|
103
105
|
content += "\n" + f"{tab} ]," + "\n"
|
|
104
106
|
content += f'{tab} "cache_seed": {cache_seed},' + "\n"
|
|
107
|
+
if temperature is not None:
|
|
108
|
+
content += f'{tab} "temperature": {temperature},' + "\n"
|
|
105
109
|
content += tab + "},\n"
|
|
106
110
|
return content
|
|
107
111
|
|
|
@@ -263,8 +263,8 @@ def get_skill_secrets_import(flow_name: str, skill: WaldiezSkill) -> str:
|
|
|
263
263
|
return ""
|
|
264
264
|
# fmt: on
|
|
265
265
|
module_name = f"{flow_name}_{skill.name}"
|
|
266
|
-
|
|
267
|
-
return f"import {module_name}_secrets{
|
|
266
|
+
type_ignore_noqa = " # type: ignore # noqa"
|
|
267
|
+
return f"import {module_name}_secrets{type_ignore_noqa}" + "\n"
|
|
268
268
|
|
|
269
269
|
|
|
270
270
|
def get_agent_skill_registrations(
|
|
@@ -177,8 +177,7 @@ class WaldiezAgent(WaldiezBase):
|
|
|
177
177
|
)
|
|
178
178
|
elif agent_class == "ReasoningAgent":
|
|
179
179
|
imports.add(
|
|
180
|
-
"from autogen.
|
|
181
|
-
"import ReasoningAgent, visualize_tree"
|
|
180
|
+
"from autogen.agents.experimental import ReasoningAgent"
|
|
182
181
|
)
|
|
183
182
|
elif agent_class == "CaptainAgent":
|
|
184
183
|
imports.add(
|
waldiez/models/model/model.py
CHANGED
waldiez/models/waldiez.py
CHANGED
|
@@ -239,7 +239,7 @@ class Waldiez:
|
|
|
239
239
|
self.flow.requirements,
|
|
240
240
|
)
|
|
241
241
|
requirements = set(requirements_list)
|
|
242
|
-
requirements.add(f"pyautogen=={autogen_version}")
|
|
242
|
+
requirements.add(f"pyautogen[openai]=={autogen_version}")
|
|
243
243
|
if self.has_rag_agents:
|
|
244
244
|
rag_extras = get_retrievechat_extra_requirements(self.agents)
|
|
245
245
|
requirements.update(rag_extras)
|
waldiez/runner.py
CHANGED
|
@@ -203,7 +203,9 @@ class WaldiezRunner:
|
|
|
203
203
|
"NOTE: If new packages were added and you are using Jupyter, "
|
|
204
204
|
"you might need to restart the kernel."
|
|
205
205
|
)
|
|
206
|
-
results: Union[
|
|
206
|
+
results: Union[
|
|
207
|
+
"ChatResult", List["ChatResult"], Dict[int, "ChatResult"]
|
|
208
|
+
] = []
|
|
207
209
|
with chdir(to=temp_dir):
|
|
208
210
|
self._exporter.export(Path(file_name))
|
|
209
211
|
spec = importlib.util.spec_from_file_location(
|
|
@@ -217,6 +219,7 @@ class WaldiezRunner:
|
|
|
217
219
|
spec.loader.exec_module(module)
|
|
218
220
|
printer("<Waldiez> - Starting workflow...")
|
|
219
221
|
results = module.main()
|
|
222
|
+
printer("<Waldiez> - Workflow finished")
|
|
220
223
|
sys.path.pop(0)
|
|
221
224
|
reset_env_vars(old_vars)
|
|
222
225
|
after_run(
|
|
@@ -248,7 +251,9 @@ class WaldiezRunner:
|
|
|
248
251
|
"NOTE: If new packages were added and you are using Jupyter, "
|
|
249
252
|
"you might need to restart the kernel."
|
|
250
253
|
)
|
|
251
|
-
results: Union[
|
|
254
|
+
results: Union[
|
|
255
|
+
"ChatResult", List["ChatResult"], Dict[int, "ChatResult"]
|
|
256
|
+
] = []
|
|
252
257
|
async with a_chdir(to=temp_dir):
|
|
253
258
|
self._exporter.export(Path(file_name))
|
|
254
259
|
spec = importlib.util.spec_from_file_location(
|
|
@@ -278,7 +283,7 @@ class WaldiezRunner:
|
|
|
278
283
|
output_path: Optional[Union[str, Path]] = None,
|
|
279
284
|
uploads_root: Optional[Union[str, Path]] = None,
|
|
280
285
|
skip_mmd: bool = False,
|
|
281
|
-
) -> Union["ChatResult", List["ChatResult"]]:
|
|
286
|
+
) -> Union["ChatResult", List["ChatResult"], Dict[int, "ChatResult"]]:
|
|
282
287
|
"""Run the Waldiez workflow.
|
|
283
288
|
|
|
284
289
|
Parameters
|
|
@@ -292,7 +297,7 @@ class WaldiezRunner:
|
|
|
292
297
|
|
|
293
298
|
Returns
|
|
294
299
|
-------
|
|
295
|
-
Union[ChatResult, List[ChatResult]]
|
|
300
|
+
Union["ChatResult", List["ChatResult"], Dict[int, "ChatResult"]]
|
|
296
301
|
The result(s) of the chat(s).
|
|
297
302
|
|
|
298
303
|
Raises
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# Copyright (c) 2024 - 2025 Waldiez and contributors.
|
|
3
3
|
# pylint: skip-file
|
|
4
4
|
# isort: skip_file
|
|
5
|
+
# flake8: noqa: E501,E402
|
|
5
6
|
"""Waldiez-studio extra typer commands for CLI."""
|
|
6
7
|
|
|
7
8
|
from typing import Any, Callable
|
|
@@ -13,7 +14,7 @@ HAVE_STUDIO = False
|
|
|
13
14
|
studio_app: Callable[..., Any] | None = None
|
|
14
15
|
|
|
15
16
|
try:
|
|
16
|
-
from waldiez_studio.cli import run # type: ignore[unused-ignore, import-not-found, import-untyped]
|
|
17
|
+
from waldiez_studio.cli import run # type: ignore[unused-ignore, import-not-found, import-untyped]
|
|
17
18
|
|
|
18
19
|
studio_app = run
|
|
19
20
|
|
|
@@ -9,6 +9,7 @@ Highly recommended to be run in a virtual environment.
|
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
11
|
import os
|
|
12
|
+
import platform
|
|
12
13
|
import shutil
|
|
13
14
|
import site
|
|
14
15
|
import subprocess
|
|
@@ -121,7 +122,8 @@ def download_sqlite_amalgamation() -> str:
|
|
|
121
122
|
os.remove(zip_path)
|
|
122
123
|
|
|
123
124
|
# Return the path to the extracted source code
|
|
124
|
-
|
|
125
|
+
folder_name = SQLITE_URL.rsplit("/", 1)[-1].split(".")[0]
|
|
126
|
+
return os.path.join(extract_path, folder_name)
|
|
125
127
|
|
|
126
128
|
|
|
127
129
|
def rename_package_name(pysqlite3_dir: str) -> None:
|
|
@@ -206,7 +208,9 @@ def check_pysqlite3() -> None:
|
|
|
206
208
|
import pysqlite3 # type: ignore[unused-ignore, import-untyped, import-not-found] # noqa
|
|
207
209
|
except ImportError:
|
|
208
210
|
print("pysqlite3 not found or cannot be imported.")
|
|
209
|
-
|
|
211
|
+
# and not arm64
|
|
212
|
+
is_arm = "arm" in platform.machine().lower()
|
|
213
|
+
if not is_arm and platform.system() == "Linux":
|
|
210
214
|
pip_install("pysqlite3-binary")
|
|
211
215
|
else:
|
|
212
216
|
# Uninstall pysqlite3-binary if it is already installed
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waldiez
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: waldiez
|
|
5
|
-
Project-URL: homepage, https://waldiez.
|
|
5
|
+
Project-URL: homepage, https://waldiez.io
|
|
6
6
|
Project-URL: repository, https://github.com/waldiez/python.git
|
|
7
|
+
Project-URL: documentation, https://waldiez.github.io/python/
|
|
8
|
+
Project-URL: issues, https://github.com/waldiez/python/issues
|
|
7
9
|
Author-email: Panagiotis Kasnesis <pkasnesis@waldiez.io>, Lazaros Toumanidis <laztoum@waldiez.io>, Stella Ioannidou <stella@humancentered.gr>
|
|
8
10
|
License-File: LICENSE
|
|
9
11
|
License-File: NOTICE.md
|
|
@@ -17,7 +19,8 @@ Classifier: Programming Language :: Python :: 3
|
|
|
17
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
-
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Requires-Python: <3.14,>=3.10
|
|
21
24
|
Requires-Dist: aiocsv==1.3.2
|
|
22
25
|
Requires-Dist: aiofiles==24.1.0
|
|
23
26
|
Requires-Dist: aiosqlite==0.21.0
|
|
@@ -25,85 +28,88 @@ Requires-Dist: asyncer==0.0.8
|
|
|
25
28
|
Requires-Dist: graphviz==0.20.3
|
|
26
29
|
Requires-Dist: httpx<1
|
|
27
30
|
Requires-Dist: jupytext
|
|
28
|
-
Requires-Dist: numpy
|
|
31
|
+
Requires-Dist: numpy<=2.2.4
|
|
29
32
|
Requires-Dist: pandas>=2
|
|
30
33
|
Requires-Dist: parso==0.8.4
|
|
31
|
-
Requires-Dist: pyautogen==0.
|
|
32
|
-
Requires-Dist: pydantic<3,>=2.
|
|
34
|
+
Requires-Dist: pyautogen[openai]==0.8.6
|
|
35
|
+
Requires-Dist: pydantic<3,>=2.10.2
|
|
33
36
|
Requires-Dist: typer<0.16,>=0.9
|
|
34
37
|
Provides-Extra: ag2-extras
|
|
35
38
|
Requires-Dist: beautifulsoup4; extra == 'ag2-extras'
|
|
36
|
-
Requires-Dist: chromadb>=0.5.
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist: crewai>0.98.0; extra == 'ag2-extras'
|
|
39
|
-
Requires-Dist: embedchain==0.1.126; extra == 'ag2-extras'
|
|
39
|
+
Requires-Dist: chromadb>=0.5.10; extra == 'ag2-extras'
|
|
40
|
+
Requires-Dist: embedchain; extra == 'ag2-extras'
|
|
40
41
|
Requires-Dist: huggingface-hub; extra == 'ag2-extras'
|
|
41
42
|
Requires-Dist: ipython; extra == 'ag2-extras'
|
|
42
43
|
Requires-Dist: langchain-community<1,>=0.3.12; extra == 'ag2-extras'
|
|
43
44
|
Requires-Dist: markdownify; extra == 'ag2-extras'
|
|
44
|
-
Requires-Dist: pgvector>=0.
|
|
45
|
+
Requires-Dist: pgvector>=0.4.0; extra == 'ag2-extras'
|
|
45
46
|
Requires-Dist: protobuf>=4.25.3; extra == 'ag2-extras'
|
|
46
|
-
Requires-Dist: psycopg
|
|
47
|
-
Requires-Dist: psycopg
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist:
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist: pyautogen[
|
|
54
|
-
Requires-Dist: pyautogen[
|
|
55
|
-
Requires-Dist: pyautogen[
|
|
56
|
-
Requires-Dist: pyautogen[
|
|
57
|
-
Requires-Dist: pyautogen[
|
|
58
|
-
Requires-Dist: pyautogen[
|
|
59
|
-
Requires-Dist: pyautogen[
|
|
60
|
-
Requires-Dist: pyautogen[
|
|
47
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'linux') and extra == 'ag2-extras'
|
|
48
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'AARCH64') and extra == 'ag2-extras'
|
|
49
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'ARM64') and extra == 'ag2-extras'
|
|
50
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'aarch64') and extra == 'ag2-extras'
|
|
51
|
+
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'arm64') and extra == 'ag2-extras'
|
|
52
|
+
Requires-Dist: psycopg[binary]==3.2.6; (sys_platform != 'linux' and platform_machine != 'arm64' and platform_machine != 'ARM64' and platform_machine != 'aarch64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
53
|
+
Requires-Dist: psycopg[binary]>=3.2.6; extra == 'ag2-extras'
|
|
54
|
+
Requires-Dist: pyautogen[anthropic]==0.8.6; extra == 'ag2-extras'
|
|
55
|
+
Requires-Dist: pyautogen[bedrock]==0.8.6; extra == 'ag2-extras'
|
|
56
|
+
Requires-Dist: pyautogen[cohere]==0.8.6; extra == 'ag2-extras'
|
|
57
|
+
Requires-Dist: pyautogen[gemini]==0.8.6; extra == 'ag2-extras'
|
|
58
|
+
Requires-Dist: pyautogen[groq]==0.8.6; extra == 'ag2-extras'
|
|
59
|
+
Requires-Dist: pyautogen[interop-crewai]==0.8.6; extra == 'ag2-extras'
|
|
60
|
+
Requires-Dist: pyautogen[interop-langchain]==0.8.6; extra == 'ag2-extras'
|
|
61
|
+
Requires-Dist: pyautogen[lmm]==0.8.6; extra == 'ag2-extras'
|
|
62
|
+
Requires-Dist: pyautogen[mistral]==0.8.6; extra == 'ag2-extras'
|
|
63
|
+
Requires-Dist: pyautogen[neo4j]==0.8.6; extra == 'ag2-extras'
|
|
64
|
+
Requires-Dist: pyautogen[ollama]==0.8.6; extra == 'ag2-extras'
|
|
65
|
+
Requires-Dist: pyautogen[together]==0.8.6; extra == 'ag2-extras'
|
|
66
|
+
Requires-Dist: pyautogen[websurfer]==0.8.6; extra == 'ag2-extras'
|
|
61
67
|
Requires-Dist: pydantic-ai>=0.0.21; extra == 'ag2-extras'
|
|
62
68
|
Requires-Dist: pymongo>=4.11; extra == 'ag2-extras'
|
|
63
69
|
Requires-Dist: pypdf; extra == 'ag2-extras'
|
|
70
|
+
Requires-Dist: pysqlite3-binary==0.5.4; (sys_platform == 'linux' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
64
71
|
Requires-Dist: qdrant-client[fastembed]; extra == 'ag2-extras'
|
|
65
72
|
Requires-Dist: sentence-transformers; extra == 'ag2-extras'
|
|
66
|
-
Requires-Dist: weaviate-client>=4.10.2; extra == 'ag2-extras'
|
|
67
73
|
Provides-Extra: dev
|
|
68
74
|
Requires-Dist: autoflake==2.3.1; extra == 'dev'
|
|
69
|
-
Requires-Dist: bandit==1.8.
|
|
75
|
+
Requires-Dist: bandit==1.8.3; extra == 'dev'
|
|
70
76
|
Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
|
|
71
|
-
Requires-Dist: flake8==7.
|
|
72
|
-
Requires-Dist: isort==6.0.
|
|
77
|
+
Requires-Dist: flake8==7.2.0; extra == 'dev'
|
|
78
|
+
Requires-Dist: isort==6.0.1; extra == 'dev'
|
|
73
79
|
Requires-Dist: mypy==1.15.0; extra == 'dev'
|
|
74
|
-
Requires-Dist: pandas-stubs; extra == 'dev'
|
|
75
|
-
Requires-Dist: pre-commit==4.
|
|
80
|
+
Requires-Dist: pandas-stubs==2.2.3.250308; extra == 'dev'
|
|
81
|
+
Requires-Dist: pre-commit==4.2.0; extra == 'dev'
|
|
76
82
|
Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
|
|
77
|
-
Requires-Dist: pylint==3.3.
|
|
78
|
-
Requires-Dist: python-dotenv==1.0
|
|
79
|
-
Requires-Dist: ruff==0.
|
|
80
|
-
Requires-Dist: toml; (python_version <= '3.10') and extra == 'dev'
|
|
81
|
-
Requires-Dist: types-pyyaml==6.0.12.
|
|
83
|
+
Requires-Dist: pylint==3.3.6; extra == 'dev'
|
|
84
|
+
Requires-Dist: python-dotenv==1.1.0; extra == 'dev'
|
|
85
|
+
Requires-Dist: ruff==0.11.5; extra == 'dev'
|
|
86
|
+
Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
|
|
87
|
+
Requires-Dist: types-pyyaml==6.0.12.20250402; extra == 'dev'
|
|
82
88
|
Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
|
|
83
|
-
Requires-Dist: yamllint==1.
|
|
89
|
+
Requires-Dist: yamllint==1.37.0; extra == 'dev'
|
|
84
90
|
Provides-Extra: docs
|
|
85
91
|
Requires-Dist: mdx-include==1.4.2; extra == 'docs'
|
|
86
92
|
Requires-Dist: mdx-truly-sane-lists==1.3; extra == 'docs'
|
|
87
93
|
Requires-Dist: mkdocs-jupyter==0.25.1; extra == 'docs'
|
|
88
94
|
Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
|
|
89
|
-
Requires-Dist: mkdocs-material==9.6.
|
|
90
|
-
Requires-Dist: mkdocs-minify-html-plugin==0.
|
|
95
|
+
Requires-Dist: mkdocs-material==9.6.11; extra == 'docs'
|
|
96
|
+
Requires-Dist: mkdocs-minify-html-plugin==0.3.1; extra == 'docs'
|
|
91
97
|
Requires-Dist: mkdocs==1.6.1; extra == 'docs'
|
|
92
|
-
Requires-Dist: mkdocstrings-python==1.
|
|
93
|
-
Requires-Dist: mkdocstrings[crystal,python]==0.
|
|
98
|
+
Requires-Dist: mkdocstrings-python==1.16.10; extra == 'docs'
|
|
99
|
+
Requires-Dist: mkdocstrings[crystal,python]==0.29.1; extra == 'docs'
|
|
94
100
|
Provides-Extra: jupyter
|
|
95
101
|
Requires-Dist: jupyterlab>=4.3.0; extra == 'jupyter'
|
|
96
|
-
Requires-Dist: waldiez-jupyter==0.4.
|
|
102
|
+
Requires-Dist: waldiez-jupyter==0.4.3; extra == 'jupyter'
|
|
97
103
|
Provides-Extra: studio
|
|
98
|
-
Requires-Dist: waldiez-studio==0.4.
|
|
104
|
+
Requires-Dist: waldiez-studio==0.4.3; extra == 'studio'
|
|
99
105
|
Provides-Extra: test
|
|
100
|
-
Requires-Dist: pytest-asyncio==0.
|
|
101
|
-
Requires-Dist: pytest-cov==6.
|
|
106
|
+
Requires-Dist: pytest-asyncio==0.26.0; extra == 'test'
|
|
107
|
+
Requires-Dist: pytest-cov==6.1.1; extra == 'test'
|
|
102
108
|
Requires-Dist: pytest-html==4.1.1; extra == 'test'
|
|
103
109
|
Requires-Dist: pytest-sugar==1.0.0; extra == 'test'
|
|
104
110
|
Requires-Dist: pytest-timeout==2.3.1; extra == 'test'
|
|
105
111
|
Requires-Dist: pytest-xdist==3.6.1; extra == 'test'
|
|
106
|
-
Requires-Dist: pytest==8.3.
|
|
112
|
+
Requires-Dist: pytest==8.3.5; extra == 'test'
|
|
107
113
|
Description-Content-Type: text/markdown
|
|
108
114
|
|
|
109
115
|
# Waldiez
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
waldiez/__init__.py,sha256=cXWdy5P9i_x6fHwlL5DRaIhmpfnhabo5GjASStlcLWw,819
|
|
2
2
|
waldiez/__main__.py,sha256=0dYzNrQbovRwQQvmZC6_1FDR1m71SUIOkTleO5tBnBw,203
|
|
3
|
-
waldiez/_version.py,sha256=
|
|
3
|
+
waldiez/_version.py,sha256=76-qoT5CDeQpMrSw_1Ag4qye6fzx710qMXkXa8_MbN4,155
|
|
4
4
|
waldiez/cli.py,sha256=FaPWh9IHBHoC9rtyt2bKBrk7S018BX__mwtTArfv4AA,6992
|
|
5
5
|
waldiez/exporter.py,sha256=ZuMF8cra0Shw4nkDiFuPqaQKFYrF0vPj_I3EhPyesPw,4788
|
|
6
6
|
waldiez/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
waldiez/runner.py,sha256=
|
|
7
|
+
waldiez/runner.py,sha256=de6Kc5etX8YPukfuj4vyF8Ke27M42NAcwK9xVAntjjg,11874
|
|
8
8
|
waldiez/exporting/__init__.py,sha256=nlMWBnn_MViGBJmDhrTCYpPv19fEP_WixvmmY9jt5c8,399
|
|
9
9
|
waldiez/exporting/agent/__init__.py,sha256=GOgri16QNICpx3YNZPzVn_KYVxuQACYKQyazhJNtYK0,188
|
|
10
10
|
waldiez/exporting/agent/agent_exporter.py,sha256=Rv-Fcsf3r_nEib1HVk3SglKkLU6fN7cMLgUwJ4Vi4sw,10482
|
|
11
11
|
waldiez/exporting/agent/utils/__init__.py,sha256=UlyOZCm3jLz5PHOJ9fhZuCqbNBBlomzvRd7K_tKR-No,844
|
|
12
|
-
waldiez/exporting/agent/utils/captain_agent.py,sha256=
|
|
12
|
+
waldiez/exporting/agent/utils/captain_agent.py,sha256=zrkqbn6o2D1HWCcWsdY0pa0Xul_lM03lkqNlLEWOsmU,7624
|
|
13
13
|
waldiez/exporting/agent/utils/code_execution.py,sha256=sRHczOmm12U9E-Q1v9UQRwao1LUEve4fnKvJwsokNNk,2352
|
|
14
14
|
waldiez/exporting/agent/utils/group_manager.py,sha256=VCqd-lsCertwVTWVez9Z1HS_H-UmBGyNGizvC736VnI,7360
|
|
15
15
|
waldiez/exporting/agent/utils/reasoning.py,sha256=EBE42Dar9n6fBrhg9D9wch0KptsP_m3Dm2WNEDuKb7g,999
|
|
@@ -22,10 +22,10 @@ waldiez/exporting/agent/utils/rag_user/mongo_utils.py,sha256=XWo6ixphBtcpmFIe9fE
|
|
|
22
22
|
waldiez/exporting/agent/utils/rag_user/pgvector_utils.py,sha256=KScLbdMdiZRWfBXhMTDQUIYYoC0gaH6rJWhJ4TZsVq8,2922
|
|
23
23
|
waldiez/exporting/agent/utils/rag_user/qdrant_utils.py,sha256=eBOGRUoTnb7QMXpScWIlMnhOv1jS4qlRJkwze0SB0Bo,3605
|
|
24
24
|
waldiez/exporting/agent/utils/rag_user/rag_user.py,sha256=gg9vH98Pf5dV42IW9HHB1Ajs6kPFVuzblFhGc_il6CU,7024
|
|
25
|
-
waldiez/exporting/agent/utils/rag_user/vector_db.py,sha256=
|
|
25
|
+
waldiez/exporting/agent/utils/rag_user/vector_db.py,sha256=EUv7mgFHAKEamkPjdFQHJAw6mTRPjZBCP2LjFLsn0Wo,3808
|
|
26
26
|
waldiez/exporting/base/__init__.py,sha256=CTfIOJt8Kgljv-jrktP3_AXnKhtn5ijaMP3QCk4b6NE,816
|
|
27
27
|
waldiez/exporting/base/agent_position.py,sha256=1qKE4MxNfJXwgsAjd674eXYub5X82WInBUc6Lh1Tw98,1642
|
|
28
|
-
waldiez/exporting/base/base_exporter.py,sha256=
|
|
28
|
+
waldiez/exporting/base/base_exporter.py,sha256=mfBxbnTll1NJeDmARYwxp7Dx2bgSsE09QZG0lu5Wsdc,3523
|
|
29
29
|
waldiez/exporting/base/export_position.py,sha256=bV50acpqHv6BQ6q6UNXg0e17Tv_koyardSA_RZDgFP4,1106
|
|
30
30
|
waldiez/exporting/base/import_position.py,sha256=EzgHF8GZZ8UsyFdNo_da9hTrQEmbVtM2ofiv9W2-C_I,447
|
|
31
31
|
waldiez/exporting/base/mixin.py,sha256=_QkBitZ3T6jdDx9yZTDFKToa0f9WsLKCW4FpZGjCztc,3376
|
|
@@ -35,36 +35,36 @@ waldiez/exporting/base/utils/naming.py,sha256=G4e9MPnbg9W8QLVblQj31sV46GKmAOqEA8
|
|
|
35
35
|
waldiez/exporting/base/utils/path_check.py,sha256=5XGKmHA3oi9kf2gI4ZHB3K9gnjDP0NEfpn0tP8cme-8,1425
|
|
36
36
|
waldiez/exporting/base/utils/to_string.py,sha256=fo8i6QaLZJsym3biN2IhVooTWlXiXVCzuU8FNFJVXME,2183
|
|
37
37
|
waldiez/exporting/chats/__init__.py,sha256=BS8F-hgrzsKPtWEyEMPE-e0JL6q5478i76vR1bKjXXY,195
|
|
38
|
-
waldiez/exporting/chats/chats_exporter.py,sha256=
|
|
38
|
+
waldiez/exporting/chats/chats_exporter.py,sha256=mLvT2Rrfec82L0_nPZq_7YB5cJuDK6GsJbVZxhafOA0,8516
|
|
39
39
|
waldiez/exporting/chats/utils/__init__.py,sha256=FMS94ObfHIlH_Pg_5s5PR-QaXYzcpZErP1Vut2PYaTY,442
|
|
40
40
|
waldiez/exporting/chats/utils/common.py,sha256=kZ9xO26Oo3tKSxZescFfB2laE9I8F5Hnq3c8oojEVGo,2410
|
|
41
41
|
waldiez/exporting/chats/utils/nested.py,sha256=evjvJeWHATumNNffAPZUInlyQuzXLmBWnlHfYQaub0I,9227
|
|
42
42
|
waldiez/exporting/chats/utils/sequential.py,sha256=TYAte2hwpGkEENjCMer-6PcL2r8PE-o95hgoi_AX2eg,7841
|
|
43
|
-
waldiez/exporting/chats/utils/single_chat.py,sha256=
|
|
44
|
-
waldiez/exporting/chats/utils/swarm.py,sha256=
|
|
43
|
+
waldiez/exporting/chats/utils/single_chat.py,sha256=8pgqPuug4K6DcMc7WANAkHPw5EuONhdahytgZ37scR8,9536
|
|
44
|
+
waldiez/exporting/chats/utils/swarm.py,sha256=KOJnUVcYql3tQgMgkzBo1q8rFtovw7o88x3L6ZUWw-c,6929
|
|
45
45
|
waldiez/exporting/flow/__init__.py,sha256=TAJ8lq9saP1IX0U-A6yGKCfvbQnEocmRAX4Hc60f3yY,183
|
|
46
|
-
waldiez/exporting/flow/flow_exporter.py,sha256=
|
|
46
|
+
waldiez/exporting/flow/flow_exporter.py,sha256=oRXJEG2zkEWACvRTZd0VhTt10Rdz4oW7cuyPDxnP6h4,18216
|
|
47
47
|
waldiez/exporting/flow/utils/__init__.py,sha256=Alk9M4_BLvnZ5yO3y0T-Xie__OgtjCPtjzfZx_tH0Ig,1380
|
|
48
48
|
waldiez/exporting/flow/utils/agent_utils.py,sha256=QL1nzlgYeh6Y-l9R3hmCsrxSzluvBVciuuEIFdBXXKM,6109
|
|
49
49
|
waldiez/exporting/flow/utils/chat_utils.py,sha256=q6HS4JTNQJe15eh78H1BlN-wId9XzvVQziGhxsUIEFs,1882
|
|
50
50
|
waldiez/exporting/flow/utils/def_main.py,sha256=GxEBfX6cUGFCMdxiu_hp5TLIhIC4ohczxA1A01mHnOo,2746
|
|
51
|
-
waldiez/exporting/flow/utils/flow_content.py,sha256=
|
|
51
|
+
waldiez/exporting/flow/utils/flow_content.py,sha256=RtkCPs9tE99beivh7gG-NihdvnashxZ5BuCM-qbHpPE,5507
|
|
52
52
|
waldiez/exporting/flow/utils/flow_names.py,sha256=GtfVRF8WYUP8Xx47AiyZ5FuuCUb22jhJn3diblbbBfM,3463
|
|
53
53
|
waldiez/exporting/flow/utils/importing_utils.py,sha256=ysryaFF872wrtqRDAlZB2mFvXwjmkX_PG-j5vLPViWQ,7106
|
|
54
54
|
waldiez/exporting/flow/utils/logging_utils.py,sha256=DsBuv7LLWb4i18HQkXrJV2YpjG_Jzk0ZDsM-8HJ5bMg,11720
|
|
55
55
|
waldiez/exporting/models/__init__.py,sha256=QbyYuS-Px-M9vMrdL-UKqnDzhYWRkNmRGBbc1IBuwpM,212
|
|
56
56
|
waldiez/exporting/models/models_exporter.py,sha256=i9aSnL7JNU8iWJotfSxWbm1CRjUP6yqd9CtfXWiRbV4,6289
|
|
57
|
-
waldiez/exporting/models/utils.py,sha256=
|
|
57
|
+
waldiez/exporting/models/utils.py,sha256=fXHA3i19wc2Ah0A3zSp2mBaVxJMhWw81FhXO24wpDCs,5186
|
|
58
58
|
waldiez/exporting/skills/__init__.py,sha256=sJm4ZnN3haldxRBgNlLK0qMK5YtydF2XnSaqnxu2hQo,195
|
|
59
59
|
waldiez/exporting/skills/skills_exporter.py,sha256=l7a662slVl8h7M2I4lrI1oWwolP7ewUCZxlt_ius54A,5606
|
|
60
|
-
waldiez/exporting/skills/utils.py,sha256=
|
|
60
|
+
waldiez/exporting/skills/utils.py,sha256=GK6UDdtz4dMMTiqvkeK6ROJNGcX52OFKDYLwDxq6hFI,10962
|
|
61
61
|
waldiez/models/__init__.py,sha256=OsLOhFRoKYgB-7zNEdTG8BmHPiSRIlZv8NKZ6c2bVJs,3996
|
|
62
|
-
waldiez/models/waldiez.py,sha256=
|
|
62
|
+
waldiez/models/waldiez.py,sha256=G0lmD-Vm3_QO2QB9t-zHWFVwgEnHjccsnB0fxLrwWBU,9984
|
|
63
63
|
waldiez/models/agents/__init__.py,sha256=bB1TKT8rqb_-SfCIIdjNi3Xkof4IVBtuhCubg2UEmXI,4970
|
|
64
64
|
waldiez/models/agents/agents.py,sha256=kwUOlV4VJIgqhYBQHbAZhWzx3iENOvYilN3nDonZTIU,4605
|
|
65
65
|
waldiez/models/agents/extra_requirements.py,sha256=6v61EsAUCKAiUi52_p4kanB9EgwGN9nRy7qV-f13tyc,2681
|
|
66
66
|
waldiez/models/agents/agent/__init__.py,sha256=Uu3t5OLBElOWlM1QqsZv0ZujZaBjCrlVmBvQCiS_Mrg,1067
|
|
67
|
-
waldiez/models/agents/agent/agent.py,sha256=
|
|
67
|
+
waldiez/models/agents/agent/agent.py,sha256=GfyDC5NXhcTo4gcVHuHFYCaGX0w4aFFfcPSWYVG37oU,8153
|
|
68
68
|
waldiez/models/agents/agent/agent_data.py,sha256=rqRRMdqOzUF5jjdVoYika-tqe0YUWHQ4at5fNL9GAYM,5437
|
|
69
69
|
waldiez/models/agents/agent/agent_type.py,sha256=3IHXHt3TrMmYYKaeN64q266GP08ACRArnbHt4aIB1Mw,449
|
|
70
70
|
waldiez/models/agents/agent/code_execution.py,sha256=lBfJMRvzl1QfNIHwQXxY2ote2Kjh9iT3twz-Tj8JrZA,2035
|
|
@@ -87,7 +87,7 @@ waldiez/models/agents/rag_user/__init__.py,sha256=sGMVeg7J0QYclnS_iiM5XP6Lz_M9_V
|
|
|
87
87
|
waldiez/models/agents/rag_user/rag_user.py,sha256=eWCW0TxqS8eJ1ph-9UAYfD-MHwgAOhi8derMYDY4PkU,1620
|
|
88
88
|
waldiez/models/agents/rag_user/rag_user_data.py,sha256=Aboyy6JJcDzh2DQIttt1l-Uzqebn46HKlw11WObbUrA,963
|
|
89
89
|
waldiez/models/agents/rag_user/retrieve_config.py,sha256=nZZ6r3yEl74J12kPsKJA28FpdjF79h-J72Fp4BDaiuI,30107
|
|
90
|
-
waldiez/models/agents/rag_user/vector_db_config.py,sha256=
|
|
90
|
+
waldiez/models/agents/rag_user/vector_db_config.py,sha256=USf39Pwuj4p8qR8lEdgmeuJ6cAIwuYwxfEZkPuQqlTs,5016
|
|
91
91
|
waldiez/models/agents/reasoning/__init__.py,sha256=ALDeBqJBVoOz5z8ftpfr0Edbku54uQrkkImPuoM98LQ,429
|
|
92
92
|
waldiez/models/agents/reasoning/reasoning_agent.py,sha256=ti4gtBkKphOOlBqaWF1onEfO6rikszEbzd2UwWez9sk,1134
|
|
93
93
|
waldiez/models/agents/reasoning/reasoning_agent_data.py,sha256=1ozpf8-wpmb0keJYCujOaOmBmy23dnQ4T5bA1gqG5pI,4098
|
|
@@ -121,8 +121,8 @@ waldiez/models/flow/flow_data.py,sha256=afD97Ff9Yd7QSXE4DphaENY7wqrq4QIl4EVgI8O4
|
|
|
121
121
|
waldiez/models/flow/utils.py,sha256=X_jelP5lHuQt1OZE6sxLlhEKbkkt8jZgbkF79e9rQig,7140
|
|
122
122
|
waldiez/models/model/__init__.py,sha256=jyJHJWzqNxnmDHAhpXWMnMK_4VF2olPIE3k7KV7_xVg,532
|
|
123
123
|
waldiez/models/model/extra_requirements.py,sha256=KgqzixbsvzM6Ec8rdQEVoWtyNusqW33ukdRoBHS5LAg,1690
|
|
124
|
-
waldiez/models/model/model.py,sha256=
|
|
125
|
-
waldiez/models/model/model_data.py,sha256=
|
|
124
|
+
waldiez/models/model/model.py,sha256=kvF1LdcIUfAEoBgfVC-nVbib9k5mma2hSGNDvf0vMaQ,7745
|
|
125
|
+
waldiez/models/model/model_data.py,sha256=xB6ovuB5Rvz9Jc3A_K8CEI55E4EPLofGuVcN4ehxkvE,3794
|
|
126
126
|
waldiez/models/skill/__init__.py,sha256=EMkjfsMUU-2H5cZ4NhzHJWuyaSp605whT-zf7Gxt4aA,470
|
|
127
127
|
waldiez/models/skill/extra_requirements.py,sha256=q3ZY5v6mWQ_9C0GuAmFm8DK2j8TDr9CQafTmFY0w5bc,1082
|
|
128
128
|
waldiez/models/skill/skill.py,sha256=Dw7sqxj78i430eTIOrkH8OFBJVLefgyJkoBn11foOx0,9083
|
|
@@ -135,13 +135,13 @@ waldiez/running/running.py,sha256=7rDA_-t__N_s5Ahb5qj6wHEM9GC6Wj5qzKm_qKeZMF4,98
|
|
|
135
135
|
waldiez/utils/__init__.py,sha256=M7ZqIInj2371ojAO73OuEPZ3fF17WZVbGE-37oyJwl0,415
|
|
136
136
|
waldiez/utils/conflict_checker.py,sha256=v7BNDenJSHfPBfqb4PnxaVZwjPqzWlh5w31WC9uOJL4,1369
|
|
137
137
|
waldiez/utils/flaml_warnings.py,sha256=jgdS8zwzuWPodTgm9nnx3wO5MrOUbR7P7IRj9-aq2qk,601
|
|
138
|
-
waldiez/utils/pysqlite3_checker.py,sha256=
|
|
138
|
+
waldiez/utils/pysqlite3_checker.py,sha256=v6_0XRCSe_gSVHK-7pLyFPTCSnh2KYjWs0_pWcS4Y6c,8277
|
|
139
139
|
waldiez/utils/cli_extras/__init__.py,sha256=FQ6biuz6Ig-U3xkmgac3WMUynH_7XWjeGI-DqWFTC8c,625
|
|
140
140
|
waldiez/utils/cli_extras/jupyter.py,sha256=C4fOiS_PbU15X-6HUZBPHvfgEjOrY39e07mClKvswPI,2971
|
|
141
|
-
waldiez/utils/cli_extras/studio.py,sha256=
|
|
142
|
-
waldiez-0.4.
|
|
143
|
-
waldiez-0.4.
|
|
144
|
-
waldiez-0.4.
|
|
145
|
-
waldiez-0.4.
|
|
146
|
-
waldiez-0.4.
|
|
147
|
-
waldiez-0.4.
|
|
141
|
+
waldiez/utils/cli_extras/studio.py,sha256=JTlkLuXgqDC0z79hT-LNiSqniXcql7jyz1nQ517-xKI,889
|
|
142
|
+
waldiez-0.4.3.dist-info/METADATA,sha256=xaJPmF2tfK-1vXXShqSmmmNGQGEXyJZ_WsKbu5trmVs,10769
|
|
143
|
+
waldiez-0.4.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
144
|
+
waldiez-0.4.3.dist-info/entry_points.txt,sha256=9MQ8Y1rD19CU7UwjNPwoyTRpQsPs2QimjrtwTD0bD6k,44
|
|
145
|
+
waldiez-0.4.3.dist-info/licenses/LICENSE,sha256=bWinEG_ynCS8eSj1vhAmYDWwYODhBOF0AUEjOgZ3kmU,11355
|
|
146
|
+
waldiez-0.4.3.dist-info/licenses/NOTICE.md,sha256=lrKsUNrpE18LPSLPJY_kt2ZJFZJEwH55wPv5Axcheyc,133
|
|
147
|
+
waldiez-0.4.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|