waldiez 0.4.3__py3-none-any.whl → 0.4.4__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/running/environment.py +3 -2
- waldiez/running/running.py +48 -24
- waldiez/utils/cli_extras/__init__.py +2 -0
- waldiez/utils/cli_extras/runner.py +37 -0
- {waldiez-0.4.3.dist-info → waldiez-0.4.4.dist-info}/METADATA +44 -26
- {waldiez-0.4.3.dist-info → waldiez-0.4.4.dist-info}/RECORD +11 -10
- {waldiez-0.4.3.dist-info → waldiez-0.4.4.dist-info}/WHEEL +0 -0
- {waldiez-0.4.3.dist-info → waldiez-0.4.4.dist-info}/entry_points.txt +0 -0
- {waldiez-0.4.3.dist-info → waldiez-0.4.4.dist-info}/licenses/LICENSE +0 -0
- {waldiez-0.4.3.dist-info → waldiez-0.4.4.dist-info}/licenses/NOTICE.md +0 -0
waldiez/_version.py
CHANGED
waldiez/running/environment.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# pylint: disable=import-outside-toplevel,reimported
|
|
4
4
|
"""Environment related utilities."""
|
|
5
5
|
|
|
6
|
-
import importlib
|
|
6
|
+
import importlib
|
|
7
7
|
import os
|
|
8
8
|
import site
|
|
9
9
|
import sys
|
|
@@ -20,7 +20,8 @@ def in_virtualenv() -> bool:
|
|
|
20
20
|
True if inside a virtualenv, False otherwise.
|
|
21
21
|
"""
|
|
22
22
|
return hasattr(sys, "real_prefix") or (
|
|
23
|
-
hasattr(sys, "base_prefix")
|
|
23
|
+
hasattr(sys, "base_prefix")
|
|
24
|
+
and os.path.realpath(sys.base_prefix) != os.path.realpath(sys.prefix)
|
|
24
25
|
)
|
|
25
26
|
|
|
26
27
|
|
waldiez/running/running.py
CHANGED
|
@@ -120,20 +120,34 @@ def install_requirements(
|
|
|
120
120
|
requirements_string = ", ".join(extra_requirements)
|
|
121
121
|
printer(f"Installing requirements: {requirements_string}")
|
|
122
122
|
pip_install = [sys.executable, "-m", "pip", "install"]
|
|
123
|
-
if not in_virtualenv():
|
|
123
|
+
if not in_virtualenv(): # it should
|
|
124
|
+
# if not, let's try to install as user
|
|
125
|
+
# not sure if --break-system-packages is safe
|
|
126
|
+
# but it might fail if we don't
|
|
127
|
+
break_system_packages = os.environ.get("PIP_BREAK_SYSTEM_PACKAGES", "")
|
|
128
|
+
os.environ["PIP_BREAK_SYSTEM_PACKAGES"] = "1"
|
|
124
129
|
pip_install.append("--user")
|
|
125
130
|
pip_install.extend(extra_requirements)
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
131
|
+
# pylint: disable=too-many-try-statements
|
|
132
|
+
try:
|
|
133
|
+
with subprocess.Popen(
|
|
134
|
+
pip_install,
|
|
135
|
+
stdout=subprocess.PIPE,
|
|
136
|
+
stderr=subprocess.PIPE,
|
|
137
|
+
) as proc:
|
|
138
|
+
if proc.stdout:
|
|
139
|
+
for line in io.TextIOWrapper(proc.stdout, encoding="utf-8"):
|
|
140
|
+
printer(line.strip())
|
|
141
|
+
if proc.stderr:
|
|
142
|
+
for line in io.TextIOWrapper(proc.stderr, encoding="utf-8"):
|
|
143
|
+
printer(line.strip())
|
|
144
|
+
finally:
|
|
145
|
+
if not in_virtualenv():
|
|
146
|
+
# restore the old env var
|
|
147
|
+
if break_system_packages:
|
|
148
|
+
os.environ["PIP_BREAK_SYSTEM_PACKAGES"] = break_system_packages
|
|
149
|
+
else:
|
|
150
|
+
del os.environ["PIP_BREAK_SYSTEM_PACKAGES"]
|
|
137
151
|
|
|
138
152
|
|
|
139
153
|
async def a_install_requirements(
|
|
@@ -152,19 +166,29 @@ async def a_install_requirements(
|
|
|
152
166
|
printer(f"Installing requirements: {requirements_string}")
|
|
153
167
|
pip_install = [sys.executable, "-m", "pip", "install"]
|
|
154
168
|
if not in_virtualenv():
|
|
155
|
-
|
|
169
|
+
break_system_packages = os.environ.get("PIP_BREAK_SYSTEM_PACKAGES", "")
|
|
170
|
+
os.environ["PIP_BREAK_SYSTEM_PACKAGES"] = "1"
|
|
171
|
+
pip_install.extend(["--user"])
|
|
156
172
|
pip_install.extend(extra_requirements)
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
173
|
+
# pylint: disable=too-many-try-statements
|
|
174
|
+
try:
|
|
175
|
+
proc = await asyncio.create_subprocess_exec(
|
|
176
|
+
*pip_install,
|
|
177
|
+
stdout=asyncio.subprocess.PIPE,
|
|
178
|
+
stderr=asyncio.subprocess.PIPE,
|
|
179
|
+
)
|
|
180
|
+
if proc.stdout:
|
|
181
|
+
async for line in proc.stdout:
|
|
182
|
+
printer(line.decode().strip())
|
|
183
|
+
if proc.stderr:
|
|
184
|
+
async for line in proc.stderr:
|
|
185
|
+
printer(line.decode().strip())
|
|
186
|
+
finally:
|
|
187
|
+
if not in_virtualenv():
|
|
188
|
+
if break_system_packages:
|
|
189
|
+
os.environ["PIP_BREAK_SYSTEM_PACKAGES"] = break_system_packages
|
|
190
|
+
else:
|
|
191
|
+
del os.environ["PIP_BREAK_SYSTEM_PACKAGES"]
|
|
168
192
|
|
|
169
193
|
|
|
170
194
|
def after_run(
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
import typer
|
|
8
8
|
|
|
9
9
|
from .jupyter import add_jupyter_cli
|
|
10
|
+
from .runner import add_runner_cli
|
|
10
11
|
from .studio import add_studio_cli
|
|
11
12
|
|
|
12
13
|
|
|
@@ -24,6 +25,7 @@ def add_cli_extras(app: typer.Typer) -> None:
|
|
|
24
25
|
The app with the extra commands added
|
|
25
26
|
"""
|
|
26
27
|
add_jupyter_cli(app)
|
|
28
|
+
add_runner_cli(app)
|
|
27
29
|
add_studio_cli(app)
|
|
28
30
|
|
|
29
31
|
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# SPDX-License-Identifier: Apache-2.0.
|
|
2
|
+
# Copyright (c) 2024 - 2025 Waldiez and contributors.
|
|
3
|
+
# pylint: skip-file
|
|
4
|
+
# isort: skip_file
|
|
5
|
+
# flake8: noqa: E501,E402
|
|
6
|
+
"""Waldiez-runner extra typer commands for CLI."""
|
|
7
|
+
|
|
8
|
+
from typing import Any, Callable
|
|
9
|
+
|
|
10
|
+
import typer
|
|
11
|
+
from typer.models import CommandInfo
|
|
12
|
+
|
|
13
|
+
HAVE_RUNNER = False
|
|
14
|
+
runner_app: Callable[..., Any] | None = None
|
|
15
|
+
|
|
16
|
+
try:
|
|
17
|
+
from waldiez_runner.cli import run # type: ignore[unused-ignore, import-not-found, import-untyped]
|
|
18
|
+
|
|
19
|
+
runner_app = run
|
|
20
|
+
|
|
21
|
+
HAVE_RUNNER = True
|
|
22
|
+
except BaseException:
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def add_runner_cli(app: typer.Typer) -> None:
|
|
27
|
+
"""Add runner command to the app if available.
|
|
28
|
+
|
|
29
|
+
Parameters
|
|
30
|
+
----------
|
|
31
|
+
app : typer.Typer
|
|
32
|
+
The Typer app to add the runner command to.
|
|
33
|
+
"""
|
|
34
|
+
if HAVE_RUNNER:
|
|
35
|
+
app.registered_commands.append(
|
|
36
|
+
CommandInfo(name="serve", callback=runner_app)
|
|
37
|
+
)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waldiez
|
|
3
|
-
Version: 0.4.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.4.4
|
|
4
|
+
Summary: Make AI Agents Collaborate: Drag, Drop, and Orchestrate with Waldiez.
|
|
5
5
|
Project-URL: homepage, https://waldiez.io
|
|
6
6
|
Project-URL: repository, https://github.com/waldiez/python.git
|
|
7
7
|
Project-URL: documentation, https://waldiez.github.io/python/
|
|
@@ -28,20 +28,27 @@ Requires-Dist: asyncer==0.0.8
|
|
|
28
28
|
Requires-Dist: graphviz==0.20.3
|
|
29
29
|
Requires-Dist: httpx<1
|
|
30
30
|
Requires-Dist: jupytext
|
|
31
|
-
Requires-Dist:
|
|
31
|
+
Requires-Dist: nest-asyncio==1.6.0
|
|
32
|
+
Requires-Dist: numpy<=2.2.5
|
|
32
33
|
Requires-Dist: pandas>=2
|
|
33
34
|
Requires-Dist: parso==0.8.4
|
|
34
|
-
Requires-Dist: pyautogen[openai]==0.8.
|
|
35
|
+
Requires-Dist: pyautogen[openai]==0.8.7
|
|
35
36
|
Requires-Dist: pydantic<3,>=2.10.2
|
|
36
37
|
Requires-Dist: typer<0.16,>=0.9
|
|
37
38
|
Provides-Extra: ag2-extras
|
|
38
39
|
Requires-Dist: beautifulsoup4; extra == 'ag2-extras'
|
|
39
|
-
Requires-Dist: chromadb>=0.5.10; extra == 'ag2-extras'
|
|
40
|
-
Requires-Dist:
|
|
40
|
+
Requires-Dist: chromadb>=0.5.10; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
41
|
+
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'
|
|
42
|
+
Requires-Dist: embedchain; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
43
|
+
Requires-Dist: embedchain; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
44
|
+
Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'ag2-extras'
|
|
45
|
+
Requires-Dist: google-auth-httplib2<0.3,>=0.2.0; extra == 'ag2-extras'
|
|
46
|
+
Requires-Dist: google-auth-oauthlib<2.0,>=1.2.1; extra == 'ag2-extras'
|
|
41
47
|
Requires-Dist: huggingface-hub; extra == 'ag2-extras'
|
|
42
48
|
Requires-Dist: ipython; extra == 'ag2-extras'
|
|
43
49
|
Requires-Dist: langchain-community<1,>=0.3.12; extra == 'ag2-extras'
|
|
44
50
|
Requires-Dist: markdownify; extra == 'ag2-extras'
|
|
51
|
+
Requires-Dist: mcp<1.6,>=1.4.0; extra == 'ag2-extras'
|
|
45
52
|
Requires-Dist: pgvector>=0.4.0; extra == 'ag2-extras'
|
|
46
53
|
Requires-Dist: protobuf>=4.25.3; extra == 'ag2-extras'
|
|
47
54
|
Requires-Dist: psycopg==3.2.6; (sys_platform == 'linux') and extra == 'ag2-extras'
|
|
@@ -49,40 +56,48 @@ Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine ==
|
|
|
49
56
|
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'ARM64') and extra == 'ag2-extras'
|
|
50
57
|
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'aarch64') and extra == 'ag2-extras'
|
|
51
58
|
Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'arm64') and extra == 'ag2-extras'
|
|
59
|
+
Requires-Dist: psycopg>=3.2.6; (sys_platform == 'win32') and extra == 'ag2-extras'
|
|
52
60
|
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.
|
|
55
|
-
Requires-Dist: pyautogen[bedrock]==0.8.
|
|
56
|
-
Requires-Dist: pyautogen[cohere]==0.8.
|
|
57
|
-
Requires-Dist: pyautogen[gemini]==0.8.
|
|
58
|
-
Requires-Dist: pyautogen[
|
|
59
|
-
Requires-Dist: pyautogen[
|
|
60
|
-
Requires-Dist: pyautogen[interop-
|
|
61
|
-
Requires-Dist: pyautogen[
|
|
62
|
-
Requires-Dist: pyautogen[
|
|
63
|
-
Requires-Dist: pyautogen[
|
|
64
|
-
Requires-Dist: pyautogen[
|
|
65
|
-
Requires-Dist: pyautogen[
|
|
66
|
-
Requires-Dist: pyautogen[
|
|
61
|
+
Requires-Dist: psycopg[binary]>=3.2.6; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
62
|
+
Requires-Dist: pyautogen[anthropic]==0.8.7; extra == 'ag2-extras'
|
|
63
|
+
Requires-Dist: pyautogen[bedrock]==0.8.7; extra == 'ag2-extras'
|
|
64
|
+
Requires-Dist: pyautogen[cohere]==0.8.7; extra == 'ag2-extras'
|
|
65
|
+
Requires-Dist: pyautogen[gemini]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
66
|
+
Requires-Dist: pyautogen[gemini]==0.8.7; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
67
|
+
Requires-Dist: pyautogen[groq]==0.8.7; extra == 'ag2-extras'
|
|
68
|
+
Requires-Dist: pyautogen[interop-crewai]==0.8.7; extra == 'ag2-extras'
|
|
69
|
+
Requires-Dist: pyautogen[interop-langchain]==0.8.7; extra == 'ag2-extras'
|
|
70
|
+
Requires-Dist: pyautogen[lmm]==0.8.7; extra == 'ag2-extras'
|
|
71
|
+
Requires-Dist: pyautogen[mistral]==0.8.7; extra == 'ag2-extras'
|
|
72
|
+
Requires-Dist: pyautogen[neo4j]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
73
|
+
Requires-Dist: pyautogen[neo4j]==0.8.7; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
74
|
+
Requires-Dist: pyautogen[ollama]==0.8.7; extra == 'ag2-extras'
|
|
75
|
+
Requires-Dist: pyautogen[together]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
76
|
+
Requires-Dist: pyautogen[together]==0.8.7; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
|
|
77
|
+
Requires-Dist: pyautogen[websurfer]==0.8.7; extra == 'ag2-extras'
|
|
67
78
|
Requires-Dist: pydantic-ai>=0.0.21; extra == 'ag2-extras'
|
|
68
79
|
Requires-Dist: pymongo>=4.11; extra == 'ag2-extras'
|
|
69
80
|
Requires-Dist: pypdf; extra == 'ag2-extras'
|
|
70
81
|
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'
|
|
71
|
-
Requires-Dist: qdrant-client[fastembed]; extra == 'ag2-extras'
|
|
72
|
-
Requires-Dist:
|
|
82
|
+
Requires-Dist: qdrant-client[fastembed]; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
83
|
+
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'
|
|
84
|
+
Requires-Dist: sentence-transformers; (sys_platform == 'linux') and extra == 'ag2-extras'
|
|
85
|
+
Requires-Dist: wikipedia-api<1.0,>=0.8.1; extra == 'ag2-extras'
|
|
73
86
|
Provides-Extra: dev
|
|
74
87
|
Requires-Dist: autoflake==2.3.1; extra == 'dev'
|
|
75
88
|
Requires-Dist: bandit==1.8.3; extra == 'dev'
|
|
76
89
|
Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
|
|
77
90
|
Requires-Dist: flake8==7.2.0; extra == 'dev'
|
|
78
91
|
Requires-Dist: isort==6.0.1; extra == 'dev'
|
|
92
|
+
Requires-Dist: jupyter-server==2.15.0; extra == 'dev'
|
|
93
|
+
Requires-Dist: jupyterlab>=4.3.0; extra == 'dev'
|
|
79
94
|
Requires-Dist: mypy==1.15.0; extra == 'dev'
|
|
80
95
|
Requires-Dist: pandas-stubs==2.2.3.250308; extra == 'dev'
|
|
81
96
|
Requires-Dist: pre-commit==4.2.0; extra == 'dev'
|
|
82
97
|
Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
|
|
83
98
|
Requires-Dist: pylint==3.3.6; extra == 'dev'
|
|
84
99
|
Requires-Dist: python-dotenv==1.1.0; extra == 'dev'
|
|
85
|
-
Requires-Dist: ruff==0.11.
|
|
100
|
+
Requires-Dist: ruff==0.11.7; extra == 'dev'
|
|
86
101
|
Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
|
|
87
102
|
Requires-Dist: types-pyyaml==6.0.12.20250402; extra == 'dev'
|
|
88
103
|
Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
|
|
@@ -92,16 +107,19 @@ Requires-Dist: mdx-include==1.4.2; extra == 'docs'
|
|
|
92
107
|
Requires-Dist: mdx-truly-sane-lists==1.3; extra == 'docs'
|
|
93
108
|
Requires-Dist: mkdocs-jupyter==0.25.1; extra == 'docs'
|
|
94
109
|
Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
|
|
95
|
-
Requires-Dist: mkdocs-material==9.6.
|
|
110
|
+
Requires-Dist: mkdocs-material==9.6.12; extra == 'docs'
|
|
96
111
|
Requires-Dist: mkdocs-minify-html-plugin==0.3.1; extra == 'docs'
|
|
97
112
|
Requires-Dist: mkdocs==1.6.1; extra == 'docs'
|
|
98
113
|
Requires-Dist: mkdocstrings-python==1.16.10; extra == 'docs'
|
|
99
114
|
Requires-Dist: mkdocstrings[crystal,python]==0.29.1; extra == 'docs'
|
|
100
115
|
Provides-Extra: jupyter
|
|
116
|
+
Requires-Dist: jupyter-server==2.15.0; extra == 'jupyter'
|
|
101
117
|
Requires-Dist: jupyterlab>=4.3.0; extra == 'jupyter'
|
|
102
|
-
Requires-Dist: waldiez-jupyter==0.4.
|
|
118
|
+
Requires-Dist: waldiez-jupyter==0.4.4; extra == 'jupyter'
|
|
119
|
+
Provides-Extra: runner
|
|
120
|
+
Requires-Dist: waldiez-runner==0.4.4; extra == 'runner'
|
|
103
121
|
Provides-Extra: studio
|
|
104
|
-
Requires-Dist: waldiez-studio==0.4.
|
|
122
|
+
Requires-Dist: waldiez-studio==0.4.4; extra == 'studio'
|
|
105
123
|
Provides-Extra: test
|
|
106
124
|
Requires-Dist: pytest-asyncio==0.26.0; extra == 'test'
|
|
107
125
|
Requires-Dist: pytest-cov==6.1.1; extra == 'test'
|
|
@@ -1,6 +1,6 @@
|
|
|
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=hOGO4PCprmYqgb60dUDZ-k6P-ZZZIbkn76oApaNS7CQ,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
|
|
@@ -129,19 +129,20 @@ waldiez/models/skill/skill.py,sha256=Dw7sqxj78i430eTIOrkH8OFBJVLefgyJkoBn11foOx0
|
|
|
129
129
|
waldiez/models/skill/skill_data.py,sha256=22ZrXHmjOy-7WAr8_QmmfW9RNIQiMUEBI8smucVC0hQ,1347
|
|
130
130
|
waldiez/models/skill/skill_type.py,sha256=TUL5MADIwZRxODoViDWC65AmRLpi7ofqW-X90hm2XhA,271
|
|
131
131
|
waldiez/running/__init__.py,sha256=hptO_sDFv0Alg-YJmLN-A49SeQ4YyWUMP8nBH21qO-o,633
|
|
132
|
-
waldiez/running/environment.py,sha256=
|
|
132
|
+
waldiez/running/environment.py,sha256=bRoCYAhbDiCdmF7lPB2KP6f-tHIX7KISRv3MuZWKsmg,3719
|
|
133
133
|
waldiez/running/gen_seq_diagram.py,sha256=wIsbAddASKNb-pRQhCIhouWGLuhX2Xja5x5xHCCSqHk,5716
|
|
134
|
-
waldiez/running/running.py,sha256=
|
|
134
|
+
waldiez/running/running.py,sha256=zlHdCUhIVkzA4fYpW9oRJwLEm-gHLz_4cpPWeUafK98,11002
|
|
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
138
|
waldiez/utils/pysqlite3_checker.py,sha256=v6_0XRCSe_gSVHK-7pLyFPTCSnh2KYjWs0_pWcS4Y6c,8277
|
|
139
|
-
waldiez/utils/cli_extras/__init__.py,sha256=
|
|
139
|
+
waldiez/utils/cli_extras/__init__.py,sha256=ZvuLaN3IGuffWMh7mladTGkJxx3kn5IepUF3jk4ZAWY,684
|
|
140
140
|
waldiez/utils/cli_extras/jupyter.py,sha256=C4fOiS_PbU15X-6HUZBPHvfgEjOrY39e07mClKvswPI,2971
|
|
141
|
+
waldiez/utils/cli_extras/runner.py,sha256=VZB3H1etwmacCVHEEZhOkhfNUMDuAErUXgnuHzrwMRY,888
|
|
141
142
|
waldiez/utils/cli_extras/studio.py,sha256=JTlkLuXgqDC0z79hT-LNiSqniXcql7jyz1nQ517-xKI,889
|
|
142
|
-
waldiez-0.4.
|
|
143
|
-
waldiez-0.4.
|
|
144
|
-
waldiez-0.4.
|
|
145
|
-
waldiez-0.4.
|
|
146
|
-
waldiez-0.4.
|
|
147
|
-
waldiez-0.4.
|
|
143
|
+
waldiez-0.4.4.dist-info/METADATA,sha256=pkNCKqEfpe64whIdMD50YB1zVg7GHFCehzfS4BSj6iI,13095
|
|
144
|
+
waldiez-0.4.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
145
|
+
waldiez-0.4.4.dist-info/entry_points.txt,sha256=9MQ8Y1rD19CU7UwjNPwoyTRpQsPs2QimjrtwTD0bD6k,44
|
|
146
|
+
waldiez-0.4.4.dist-info/licenses/LICENSE,sha256=bWinEG_ynCS8eSj1vhAmYDWwYODhBOF0AUEjOgZ3kmU,11355
|
|
147
|
+
waldiez-0.4.4.dist-info/licenses/NOTICE.md,sha256=lrKsUNrpE18LPSLPJY_kt2ZJFZJEwH55wPv5Axcheyc,133
|
|
148
|
+
waldiez-0.4.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|