waldiez 0.4.4__py3-none-any.whl → 0.4.6__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/__init__.py +18 -10
- waldiez/_version.py +5 -2
- waldiez/cli.py +19 -4
- waldiez/exporter.py +8 -4
- waldiez/exporting/agent/utils/captain_agent.py +4 -1
- waldiez/exporting/agent/utils/group_manager.py +0 -1
- waldiez/exporting/agent/utils/rag_user/rag_user.py +1 -0
- waldiez/exporting/agent/utils/swarm_agent.py +1 -0
- waldiez/exporting/base/base_exporter.py +2 -2
- waldiez/exporting/base/mixin.py +3 -0
- waldiez/exporting/base/utils/comments.py +2 -0
- waldiez/exporting/chats/utils/sequential.py +1 -1
- waldiez/exporting/chats/utils/single_chat.py +3 -0
- waldiez/exporting/chats/utils/swarm.py +3 -0
- waldiez/exporting/flow/flow_exporter.py +2 -0
- waldiez/exporting/flow/utils/def_main.py +1 -0
- waldiez/exporting/flow/utils/flow_content.py +3 -0
- waldiez/exporting/flow/utils/flow_names.py +1 -0
- waldiez/exporting/flow/utils/importing_utils.py +1 -0
- waldiez/exporting/flow/utils/logging_utils.py +8 -8
- waldiez/exporting/skills/skills_exporter.py +1 -1
- waldiez/exporting/skills/utils.py +5 -3
- waldiez/models/__init__.py +1 -0
- waldiez/models/agents/agent/agent.py +1 -1
- waldiez/models/agents/agent/termination_message.py +1 -0
- waldiez/models/agents/group_manager/speakers.py +1 -1
- waldiez/models/agents/rag_user/retrieve_config.py +1 -0
- waldiez/models/agents/swarm_agent/after_work.py +0 -1
- waldiez/models/agents/swarm_agent/on_condition.py +1 -0
- waldiez/models/agents/swarm_agent/on_condition_available.py +1 -0
- waldiez/models/chat/chat.py +2 -0
- waldiez/models/chat/chat_message.py +1 -0
- waldiez/models/common/ag2_version.py +2 -2
- waldiez/models/common/method_utils.py +11 -2
- waldiez/models/flow/flow.py +1 -0
- waldiez/models/model/extra_requirements.py +2 -2
- waldiez/models/skill/extra_requirements.py +3 -6
- waldiez/models/waldiez.py +9 -8
- waldiez/runner.py +4 -2
- waldiez/running/__init__.py +2 -0
- waldiez/running/environment.py +21 -1
- waldiez/running/gen_seq_diagram.py +3 -2
- waldiez/running/running.py +3 -2
- waldiez/utils/__init__.py +2 -0
- waldiez/utils/conflict_checker.py +3 -3
- waldiez/utils/pysqlite3_checker.py +63 -21
- waldiez/utils/rdps_checker.py +122 -0
- {waldiez-0.4.4.dist-info → waldiez-0.4.6.dist-info}/METADATA +109 -41
- {waldiez-0.4.4.dist-info → waldiez-0.4.6.dist-info}/RECORD +53 -52
- {waldiez-0.4.4.dist-info → waldiez-0.4.6.dist-info}/licenses/LICENSE +2 -2
- waldiez-0.4.6.dist-info/licenses/NOTICE.md +14 -0
- waldiez-0.4.4.dist-info/licenses/NOTICE.md +0 -5
- {waldiez-0.4.4.dist-info → waldiez-0.4.6.dist-info}/WHEEL +0 -0
- {waldiez-0.4.4.dist-info → waldiez-0.4.6.dist-info}/entry_points.txt +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waldiez
|
|
3
|
-
Version: 0.4.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Project-URL:
|
|
7
|
-
Project-URL:
|
|
8
|
-
Project-URL:
|
|
9
|
-
Author-email: Panagiotis Kasnesis <pkasnesis@waldiez.io>, Lazaros Toumanidis <laztoum@waldiez.io>, Stella Ioannidou <stella@
|
|
3
|
+
Version: 0.4.6
|
|
4
|
+
Dynamic: Keywords
|
|
5
|
+
Summary: Make AG2 Agents Collaborate: Drag, Drop, and Orchestrate with Waldiez.
|
|
6
|
+
Project-URL: Homepage, https://waldiez.io
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/waldiez/waldiez/issues
|
|
8
|
+
Project-URL: Repository, https://github.com/waldiez/waldiez.git
|
|
9
|
+
Author-email: Panagiotis Kasnesis <pkasnesis@waldiez.io>, Lazaros Toumanidis <laztoum@waldiez.io>, Stella Ioannidou <stella@waldiez.io>
|
|
10
10
|
License-File: LICENSE
|
|
11
11
|
License-File: NOTICE.md
|
|
12
12
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -21,6 +21,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.13
|
|
23
23
|
Requires-Python: <3.14,>=3.10
|
|
24
|
+
Requires-Dist: ag2[openai]==0.8.7
|
|
24
25
|
Requires-Dist: aiocsv==1.3.2
|
|
25
26
|
Requires-Dist: aiofiles==24.1.0
|
|
26
27
|
Requires-Dist: aiosqlite==0.21.0
|
|
@@ -32,10 +33,26 @@ Requires-Dist: nest-asyncio==1.6.0
|
|
|
32
33
|
Requires-Dist: numpy<=2.2.5
|
|
33
34
|
Requires-Dist: pandas>=2
|
|
34
35
|
Requires-Dist: parso==0.8.4
|
|
35
|
-
Requires-Dist:
|
|
36
|
+
Requires-Dist: pillow>=10.0.0
|
|
36
37
|
Requires-Dist: pydantic<3,>=2.10.2
|
|
37
38
|
Requires-Dist: typer<0.16,>=0.9
|
|
38
39
|
Provides-Extra: ag2-extras
|
|
40
|
+
Requires-Dist: ag2[anthropic]==0.8.7; extra == 'ag2-extras'
|
|
41
|
+
Requires-Dist: ag2[bedrock]==0.8.7; extra == 'ag2-extras'
|
|
42
|
+
Requires-Dist: ag2[cohere]==0.8.7; extra == 'ag2-extras'
|
|
43
|
+
Requires-Dist: ag2[gemini]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
44
|
+
Requires-Dist: ag2[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'
|
|
45
|
+
Requires-Dist: ag2[groq]==0.8.7; extra == 'ag2-extras'
|
|
46
|
+
Requires-Dist: ag2[interop-crewai]==0.8.7; extra == 'ag2-extras'
|
|
47
|
+
Requires-Dist: ag2[interop-langchain]==0.8.7; extra == 'ag2-extras'
|
|
48
|
+
Requires-Dist: ag2[lmm]==0.8.7; extra == 'ag2-extras'
|
|
49
|
+
Requires-Dist: ag2[mistral]==0.8.7; extra == 'ag2-extras'
|
|
50
|
+
Requires-Dist: ag2[neo4j]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
51
|
+
Requires-Dist: ag2[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'
|
|
52
|
+
Requires-Dist: ag2[ollama]==0.8.7; extra == 'ag2-extras'
|
|
53
|
+
Requires-Dist: ag2[together]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
54
|
+
Requires-Dist: ag2[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'
|
|
55
|
+
Requires-Dist: ag2[websurfer]==0.8.7; extra == 'ag2-extras'
|
|
39
56
|
Requires-Dist: beautifulsoup4; extra == 'ag2-extras'
|
|
40
57
|
Requires-Dist: chromadb>=0.5.10; (sys_platform != 'win32') and extra == 'ag2-extras'
|
|
41
58
|
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'
|
|
@@ -59,22 +76,6 @@ Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine ==
|
|
|
59
76
|
Requires-Dist: psycopg>=3.2.6; (sys_platform == 'win32') and extra == 'ag2-extras'
|
|
60
77
|
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'
|
|
61
78
|
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'
|
|
78
79
|
Requires-Dist: pydantic-ai>=0.0.21; extra == 'ag2-extras'
|
|
79
80
|
Requires-Dist: pymongo>=4.11; extra == 'ag2-extras'
|
|
80
81
|
Requires-Dist: pypdf; extra == 'ag2-extras'
|
|
@@ -88,7 +89,7 @@ Requires-Dist: autoflake==2.3.1; extra == 'dev'
|
|
|
88
89
|
Requires-Dist: bandit==1.8.3; extra == 'dev'
|
|
89
90
|
Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
|
|
90
91
|
Requires-Dist: flake8==7.2.0; extra == 'dev'
|
|
91
|
-
Requires-Dist:
|
|
92
|
+
Requires-Dist: hatchling==1.27.0; extra == 'dev'
|
|
92
93
|
Requires-Dist: jupyter-server==2.15.0; extra == 'dev'
|
|
93
94
|
Requires-Dist: jupyterlab>=4.3.0; extra == 'dev'
|
|
94
95
|
Requires-Dist: mypy==1.15.0; extra == 'dev'
|
|
@@ -97,46 +98,52 @@ Requires-Dist: pre-commit==4.2.0; extra == 'dev'
|
|
|
97
98
|
Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
|
|
98
99
|
Requires-Dist: pylint==3.3.6; extra == 'dev'
|
|
99
100
|
Requires-Dist: python-dotenv==1.1.0; extra == 'dev'
|
|
100
|
-
Requires-Dist: ruff==0.11.
|
|
101
|
+
Requires-Dist: ruff==0.11.8; extra == 'dev'
|
|
101
102
|
Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
|
|
102
103
|
Requires-Dist: types-pyyaml==6.0.12.20250402; extra == 'dev'
|
|
104
|
+
Requires-Dist: types-requests==2.32.0.20250328; extra == 'dev'
|
|
103
105
|
Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
|
|
104
|
-
Requires-Dist: yamllint==1.37.
|
|
106
|
+
Requires-Dist: yamllint==1.37.1; extra == 'dev'
|
|
105
107
|
Provides-Extra: docs
|
|
106
108
|
Requires-Dist: mdx-include==1.4.2; extra == 'docs'
|
|
107
109
|
Requires-Dist: mdx-truly-sane-lists==1.3; extra == 'docs'
|
|
110
|
+
Requires-Dist: mkdocs-awesome-nav; extra == 'docs'
|
|
108
111
|
Requires-Dist: mkdocs-jupyter==0.25.1; extra == 'docs'
|
|
109
112
|
Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
|
|
110
113
|
Requires-Dist: mkdocs-material==9.6.12; extra == 'docs'
|
|
111
114
|
Requires-Dist: mkdocs-minify-html-plugin==0.3.1; extra == 'docs'
|
|
115
|
+
Requires-Dist: mkdocs-open-in-new-tab==1.0.8; extra == 'docs'
|
|
112
116
|
Requires-Dist: mkdocs==1.6.1; extra == 'docs'
|
|
113
117
|
Requires-Dist: mkdocstrings-python==1.16.10; extra == 'docs'
|
|
114
118
|
Requires-Dist: mkdocstrings[crystal,python]==0.29.1; extra == 'docs'
|
|
115
119
|
Provides-Extra: jupyter
|
|
116
120
|
Requires-Dist: jupyter-server==2.15.0; extra == 'jupyter'
|
|
117
121
|
Requires-Dist: jupyterlab>=4.3.0; extra == 'jupyter'
|
|
118
|
-
Requires-Dist: waldiez-jupyter==0.4.
|
|
122
|
+
Requires-Dist: waldiez-jupyter==0.4.6; extra == 'jupyter'
|
|
119
123
|
Provides-Extra: runner
|
|
120
|
-
Requires-Dist: waldiez-runner==0.4.
|
|
124
|
+
Requires-Dist: waldiez-runner==0.4.6; (python_version >= '3.11') and extra == 'runner'
|
|
121
125
|
Provides-Extra: studio
|
|
122
|
-
Requires-Dist: waldiez-studio==0.4.
|
|
126
|
+
Requires-Dist: waldiez-studio==0.4.6; extra == 'studio'
|
|
123
127
|
Provides-Extra: test
|
|
124
128
|
Requires-Dist: pytest-asyncio==0.26.0; extra == 'test'
|
|
125
129
|
Requires-Dist: pytest-cov==6.1.1; extra == 'test'
|
|
126
130
|
Requires-Dist: pytest-html==4.1.1; extra == 'test'
|
|
127
131
|
Requires-Dist: pytest-sugar==1.0.0; extra == 'test'
|
|
128
|
-
Requires-Dist: pytest-timeout==2.
|
|
132
|
+
Requires-Dist: pytest-timeout==2.4.0; extra == 'test'
|
|
129
133
|
Requires-Dist: pytest-xdist==3.6.1; extra == 'test'
|
|
130
134
|
Requires-Dist: pytest==8.3.5; extra == 'test'
|
|
131
135
|
Description-Content-Type: text/markdown
|
|
132
136
|
|
|
133
137
|
# Waldiez
|
|
134
138
|
|
|
135
|
-
 [](https://coveralls.io/github/waldiez/python) [](https://badge.fury.io/py/waldiez)
|
|
139
|
+
 [](https://coveralls.io/github/waldiez/python) [](https://pepy.tech/projects/waldiez) [](https://badge.fury.io/py/waldiez) [](https://badge.fury.io/js/@waldiez%2Freact)
|
|
136
140
|
|
|
137
|
-
|
|
141
|
+
## Make AG2 Agents Collaborate: Drag, Drop, and Orchestrate with Waldiez
|
|
138
142
|
|
|
139
|
-
|
|
143
|
+
Design AI Agents and translate a Waldiez flow to AG2:
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
https://github.com/user-attachments/assets/71d4b8d1-a24b-45ab-ab53-dfc193e8fcaa
|
|
140
147
|
|
|
141
148
|
To a python script or a jupyter notebook with the corresponding [ag2](https://github.com/ag2ai/ag2/) agents and chats.
|
|
142
149
|
|
|
@@ -148,16 +155,36 @@ To a python script or a jupyter notebook with the corresponding [ag2](https://gi
|
|
|
148
155
|
|
|
149
156
|
## Installation
|
|
150
157
|
|
|
158
|
+
### Python
|
|
159
|
+
|
|
151
160
|
On PyPI:
|
|
152
161
|
|
|
153
|
-
```
|
|
162
|
+
```shell
|
|
154
163
|
python -m pip install waldiez
|
|
155
164
|
```
|
|
156
165
|
|
|
157
166
|
From the repository:
|
|
158
167
|
|
|
159
|
-
```
|
|
160
|
-
python -m pip install git+https://github.com/waldiez/
|
|
168
|
+
```shell
|
|
169
|
+
python -m pip install git+https://github.com/waldiez/waldiez.git
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
### React Component
|
|
173
|
+
|
|
174
|
+
If you’re looking for the React component, please refer to [README.npm](https://github.com/waldiez/waldiez/blob/main/README.npm.md).
|
|
175
|
+
|
|
176
|
+
> Note: The React component is only for creating and editing flows — it is not needed to convert or run flows (that functionality is handled by the Python package).
|
|
177
|
+
|
|
178
|
+
Quick install:
|
|
179
|
+
|
|
180
|
+
```shell
|
|
181
|
+
npm install @waldiez/react
|
|
182
|
+
# or
|
|
183
|
+
yarn add @waldiez/react
|
|
184
|
+
# or
|
|
185
|
+
pnpm add @waldiez/react
|
|
186
|
+
# or
|
|
187
|
+
bun add @waldiez/react
|
|
161
188
|
```
|
|
162
189
|
|
|
163
190
|
## Usage
|
|
@@ -165,7 +192,6 @@ python -m pip install git+https://github.com/waldiez/python.git
|
|
|
165
192
|
### UI Options
|
|
166
193
|
|
|
167
194
|
- For creating-only (no exporting or running) waldiez flows, you can use the playground at <https://waldiez.github.io>.
|
|
168
|
-
The repo for the js library is [here](https://github.com/waldiez/react).
|
|
169
195
|
- There is also a jupyterlab extension [here](https://github.com/waldiez/jupyter)
|
|
170
196
|
- You also can use the vscode extension:
|
|
171
197
|
- [repo](https://github.com/waldiez/vscode)
|
|
@@ -256,7 +282,7 @@ runner.run(output_path=output_path)
|
|
|
256
282
|
|
|
257
283
|
## Known Conflicts
|
|
258
284
|
|
|
259
|
-
- **autogen-agentchat**: This package conflicts with `ag2
|
|
285
|
+
- **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:
|
|
260
286
|
|
|
261
287
|
```shell
|
|
262
288
|
pip uninstall autogen-agentchat -y
|
|
@@ -265,9 +291,51 @@ runner.run(output_path=output_path)
|
|
|
265
291
|
If already installed waldiez you might need to reinstall it after uninstalling `autogen-agentchat`:
|
|
266
292
|
|
|
267
293
|
```shell
|
|
268
|
-
pip install --force --no-cache waldiez
|
|
294
|
+
pip install --force --no-cache waldiez ag2
|
|
269
295
|
```
|
|
270
296
|
|
|
297
|
+
## See also
|
|
298
|
+
|
|
299
|
+
- [Waldiez Playground](https://waldiez.github.io)
|
|
300
|
+
- [React Component](https://github.com/waldiez/waldiez/blob/main/README.npm.md)
|
|
301
|
+
- [Waldiez Studio](https://github.com/waldiez/studio)
|
|
302
|
+
- [Waldiez JupyterLab Extension](https://github.com/waldiez/jupyter)
|
|
303
|
+
- [Waldiez VSCode Extension](https://github.com/waldiez/vscode)
|
|
304
|
+
|
|
305
|
+
## Contributors ✨
|
|
306
|
+
|
|
307
|
+
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
308
|
+
|
|
309
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
310
|
+
<!-- prettier-ignore-start -->
|
|
311
|
+
<!-- markdownlint-disable -->
|
|
312
|
+
<table>
|
|
313
|
+
<tbody>
|
|
314
|
+
<tr>
|
|
315
|
+
<td align="center" valign="top" width="14.28%"><a href="https://scholar.google.com/citations?user=JmW9DwkAAAAJ"><img src="https://avatars.githubusercontent.com/u/29335277?v=4?s=100" width="100px;" alt="Panagiotis Kasnesis"/><br /><sub><b>Panagiotis Kasnesis</b></sub></a><br /><a href="#projectManagement-ounospanas" title="Project Management">📆</a> <a href="#research-ounospanas" title="Research">🔬</a></td>
|
|
316
|
+
<td align="center" valign="top" width="14.28%"><a href="https://humancentered.gr/"><img src="https://avatars.githubusercontent.com/u/3456066?v=4?s=100" width="100px;" alt="Stella Ioannidou"/><br /><sub><b>Stella Ioannidou</b></sub></a><br /><a href="#promotion-siioannidou" title="Promotion">📣</a> <a href="#design-siioannidou" title="Design">🎨</a></td>
|
|
317
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lazToum"><img src="https://avatars.githubusercontent.com/u/4764837?v=4?s=100" width="100px;" alt="Lazaros Toumanidis"/><br /><sub><b>Lazaros Toumanidis</b></sub></a><br /><a href="https://github.com/waldiez/react/commits?author=lazToum" title="Code">💻</a></td>
|
|
318
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/amaliacontiero"><img src="https://avatars.githubusercontent.com/u/29499343?v=4?s=100" width="100px;" alt="Amalia Contiero"/><br /><sub><b>Amalia Contiero</b></sub></a><br /><a href="https://github.com/waldiez/vscode/commits?author=amaliacontiero" title="Code">💻</a> <a href="https://github.com/waldiez/vscode/issues?q=author%3Aamaliacontiero" title="Bug reports">🐛</a></td>
|
|
319
|
+
</tr>
|
|
320
|
+
</tbody>
|
|
321
|
+
<tfoot>
|
|
322
|
+
<tr>
|
|
323
|
+
<td align="center" size="13px" colspan="7">
|
|
324
|
+
<img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
|
|
325
|
+
<a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
|
|
326
|
+
</img>
|
|
327
|
+
</td>
|
|
328
|
+
</tr>
|
|
329
|
+
</tfoot>
|
|
330
|
+
</table>
|
|
331
|
+
|
|
332
|
+
<!-- markdownlint-restore -->
|
|
333
|
+
<!-- prettier-ignore-end -->
|
|
334
|
+
|
|
335
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
336
|
+
|
|
337
|
+
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
|
338
|
+
|
|
271
339
|
## License
|
|
272
340
|
|
|
273
|
-
This project is licensed under the [Apache License, Version 2.0 (Apache-2.0)](https://github.com/waldiez/
|
|
341
|
+
This project is licensed under the [Apache License, Version 2.0 (Apache-2.0)](https://github.com/waldiez/waldiez/blob/main/LICENSE).
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
waldiez/__init__.py,sha256=
|
|
1
|
+
waldiez/__init__.py,sha256=U4oGMa1KiTlafBOPqYbayCpK_h9qEcNaU_duRJF8a7c,996
|
|
2
2
|
waldiez/__main__.py,sha256=0dYzNrQbovRwQQvmZC6_1FDR1m71SUIOkTleO5tBnBw,203
|
|
3
|
-
waldiez/_version.py,sha256=
|
|
4
|
-
waldiez/cli.py,sha256=
|
|
5
|
-
waldiez/exporter.py,sha256=
|
|
3
|
+
waldiez/_version.py,sha256=_rd8sjuq-MtGCE23TFqErBW5w6XPiQoRfmuRYWY-zE0,249
|
|
4
|
+
waldiez/cli.py,sha256=OpC9ySHlKIJv61JQ1jlv9Ukbtp9A_QQeCMLiqReX53M,7434
|
|
5
|
+
waldiez/exporter.py,sha256=43XJzMEBiTmGb3gSvOSPsyZOKBdY_Mc69T3vK4ITAZU,4822
|
|
6
6
|
waldiez/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
waldiez/runner.py,sha256=
|
|
7
|
+
waldiez/runner.py,sha256=nHsO3nPwFuq9wnVQn1lbKNtXxgRHhXhsXmUQ6oQp5O8,11873
|
|
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=YyrqGrxfPriBnaoZ2ifKn1wSebyNREe-eVOudgd0vBM,7625
|
|
13
13
|
waldiez/exporting/agent/utils/code_execution.py,sha256=sRHczOmm12U9E-Q1v9UQRwao1LUEve4fnKvJwsokNNk,2352
|
|
14
|
-
waldiez/exporting/agent/utils/group_manager.py,sha256=
|
|
14
|
+
waldiez/exporting/agent/utils/group_manager.py,sha256=V_U726DLQDt5OKpvdso1yV1RVCatBYt3TQ50Y8whWqs,7359
|
|
15
15
|
waldiez/exporting/agent/utils/reasoning.py,sha256=EBE42Dar9n6fBrhg9D9wch0KptsP_m3Dm2WNEDuKb7g,999
|
|
16
|
-
waldiez/exporting/agent/utils/swarm_agent.py,sha256=
|
|
16
|
+
waldiez/exporting/agent/utils/swarm_agent.py,sha256=nW6vYSroMcBWqZnM4hkH4GabliuBazHsRoi7-t3YCzk,15968
|
|
17
17
|
waldiez/exporting/agent/utils/teachability.py,sha256=4RXj-NfNZwdSTKBqw583EIXUzTuWMXYtMp2kRsCixsk,1268
|
|
18
18
|
waldiez/exporting/agent/utils/termination_message.py,sha256=tQ4rCOLumn-xbQzTPK397BQI_fOV6QrjbylA0F4TMrw,1280
|
|
19
19
|
waldiez/exporting/agent/utils/rag_user/__init__.py,sha256=B7vM06Cqe1rfeB_srQxzl1wOHb4wzOwdsTXQy4BFEQc,289
|
|
@@ -21,16 +21,16 @@ waldiez/exporting/agent/utils/rag_user/chroma_utils.py,sha256=4dzjYQpgxtylOU_Nph
|
|
|
21
21
|
waldiez/exporting/agent/utils/rag_user/mongo_utils.py,sha256=XWo6ixphBtcpmFIe9fE7WpZ1-lQ8zNYOmfD3gbehpU4,2804
|
|
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
|
-
waldiez/exporting/agent/utils/rag_user/rag_user.py,sha256=
|
|
24
|
+
waldiez/exporting/agent/utils/rag_user/rag_user.py,sha256=6KE9Ldy8BoIN4Uod6yDUDzlXNaSsGOGvijcjlOPrfN0,7025
|
|
25
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=ZSByuDu9rd7X9y3BTAfgRwWt_MTp6vPaRlmYSm5qLYg,3526
|
|
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
|
-
waldiez/exporting/base/mixin.py,sha256=
|
|
31
|
+
waldiez/exporting/base/mixin.py,sha256=HayH1DTw_b6XOZhI8dMz9FJsp_bUGgJmTzOHUNcghdk,3379
|
|
32
32
|
waldiez/exporting/base/utils/__init__.py,sha256=2dp5wO0TYWywgXXptU9VLDjNQYCf8x7g4e4vPlLKW98,508
|
|
33
|
-
waldiez/exporting/base/utils/comments.py,sha256=
|
|
33
|
+
waldiez/exporting/base/utils/comments.py,sha256=Co1sFOtLpGFfgooue-pbpPIpubo3BmGUWMTNOsKM_p4,2302
|
|
34
34
|
waldiez/exporting/base/utils/naming.py,sha256=G4e9MPnbg9W8QLVblQj31sV46GKmAOqEA8iChu6mo58,3670
|
|
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
|
|
@@ -39,39 +39,39 @@ waldiez/exporting/chats/chats_exporter.py,sha256=mLvT2Rrfec82L0_nPZq_7YB5cJuDK6G
|
|
|
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
|
-
waldiez/exporting/chats/utils/sequential.py,sha256=
|
|
43
|
-
waldiez/exporting/chats/utils/single_chat.py,sha256=
|
|
44
|
-
waldiez/exporting/chats/utils/swarm.py,sha256=
|
|
42
|
+
waldiez/exporting/chats/utils/sequential.py,sha256=FMh0UAM1hncaBaKWohNMyRQKRDKNwrQNa-wFAnsCwmI,7842
|
|
43
|
+
waldiez/exporting/chats/utils/single_chat.py,sha256=oniIlfgH8FRU7fAo1HT8rfNYpnPxDOrIPEtLlgwKo3k,9539
|
|
44
|
+
waldiez/exporting/chats/utils/swarm.py,sha256=9siehOysdy7kZWQlj7D7wdTvtsY79y9fqwPs-iFgvGE,6932
|
|
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=_pCFwfF9LSZ9jnFHq1cljNPN_dyvF6AnPwsc37R6joA,18218
|
|
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
|
-
waldiez/exporting/flow/utils/def_main.py,sha256=
|
|
51
|
-
waldiez/exporting/flow/utils/flow_content.py,sha256=
|
|
52
|
-
waldiez/exporting/flow/utils/flow_names.py,sha256=
|
|
53
|
-
waldiez/exporting/flow/utils/importing_utils.py,sha256=
|
|
54
|
-
waldiez/exporting/flow/utils/logging_utils.py,sha256=
|
|
50
|
+
waldiez/exporting/flow/utils/def_main.py,sha256=T5Hy11_dwAXKcduXbqt4ee5tucdA-IzdS3KkOiEiy84,2747
|
|
51
|
+
waldiez/exporting/flow/utils/flow_content.py,sha256=FBTpZyAb28lGXkkZ0QIqWgyIp4J5gLLtY-LMiZMG2rM,5510
|
|
52
|
+
waldiez/exporting/flow/utils/flow_names.py,sha256=AximXFdWLvc6FphCFbw4_nQ-mRIIK_9ejEcfGZszmvs,3464
|
|
53
|
+
waldiez/exporting/flow/utils/importing_utils.py,sha256=kK3pLSweGtYNazAOAgB_HAPTY73hgeh7lXRL1TwMj_0,7107
|
|
54
|
+
waldiez/exporting/flow/utils/logging_utils.py,sha256=JFY4LQ8E5k0JBohVbRrK5vjkxHQQ57fZc30i0MbsDTA,11708
|
|
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
57
|
waldiez/exporting/models/utils.py,sha256=fXHA3i19wc2Ah0A3zSp2mBaVxJMhWw81FhXO24wpDCs,5186
|
|
58
58
|
waldiez/exporting/skills/__init__.py,sha256=sJm4ZnN3haldxRBgNlLK0qMK5YtydF2XnSaqnxu2hQo,195
|
|
59
|
-
waldiez/exporting/skills/skills_exporter.py,sha256=
|
|
60
|
-
waldiez/exporting/skills/utils.py,sha256=
|
|
61
|
-
waldiez/models/__init__.py,sha256=
|
|
62
|
-
waldiez/models/waldiez.py,sha256=
|
|
59
|
+
waldiez/exporting/skills/skills_exporter.py,sha256=ANQASe2r4Je9FaYduO4YtT4O7nD9u2z31W47keENZog,5604
|
|
60
|
+
waldiez/exporting/skills/utils.py,sha256=0AiNr0GmLp7jHG8eZgKqaMhBUvnNkNzVgvZwckr8hgQ,10966
|
|
61
|
+
waldiez/models/__init__.py,sha256=JbEOjg1EwTJeG1OdX_rttqSIEC_t8g5OSIENJvz2Cvc,3997
|
|
62
|
+
waldiez/models/waldiez.py,sha256=5681bSgPD1c56CHgftbx_XwWi6udf0LoXdbLmtncTRo,10012
|
|
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=uR0Z-u1siJ6siMCjn8q24G0cKpgvfSnyONKZgkbjl0s,8148
|
|
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
|
|
71
71
|
waldiez/models/agents/agent/linked_skill.py,sha256=VpVDtI13bUPRUDk8usoIJVHs7ZLPWS3pp5GvuzIiZec,760
|
|
72
72
|
waldiez/models/agents/agent/nested_chat.py,sha256=wPwc_6qUMz8JgQL9rjx2ry4HPJKvGlLzDq5SmDXmku0,1850
|
|
73
73
|
waldiez/models/agents/agent/teachability.py,sha256=VI73WWdQ5kxVdrfglwojU4gxizkAfzB-dWg8FzFH0bs,1796
|
|
74
|
-
waldiez/models/agents/agent/termination_message.py,sha256=
|
|
74
|
+
waldiez/models/agents/agent/termination_message.py,sha256=gpz_AawVeeMMKH9a-Mo6FoTmweVZ1iV-nsEe_WU8w9w,6852
|
|
75
75
|
waldiez/models/agents/assistant/__init__.py,sha256=y2s2F2e7njMcmwye1UOUULHSvU3VsDLreTLvRU1I4M0,268
|
|
76
76
|
waldiez/models/agents/assistant/assistant.py,sha256=POBoEv5iOCKF3s7a5Ww7OojM16PREye6r9jO7e6epd8,1188
|
|
77
77
|
waldiez/models/agents/assistant/assistant_data.py,sha256=KFxgCXdcmr6v6kG13nLQYUrktIVV0DMNcpV-7kt-5rk,916
|
|
@@ -82,20 +82,20 @@ waldiez/models/agents/captain_agent/captain_agent_lib_entry.py,sha256=oxuKB6w8Lu
|
|
|
82
82
|
waldiez/models/agents/group_manager/__init__.py,sha256=MlMzrAfiSRprVJvAVNLUuulckNsBuWsiHXa0-tcUCWM,894
|
|
83
83
|
waldiez/models/agents/group_manager/group_manager.py,sha256=LG5-PEi6Hf69fZSkwOBjHnhC_SikRUewqBU37x4DxXk,2780
|
|
84
84
|
waldiez/models/agents/group_manager/group_manager_data.py,sha256=LZYG2RF6El041rIE0X_9tSfe7bElgixsSja04v4KiiA,2878
|
|
85
|
-
waldiez/models/agents/group_manager/speakers.py,sha256=
|
|
85
|
+
waldiez/models/agents/group_manager/speakers.py,sha256=llBKCVts3WSalHOFsttnKcCwpwR8pGR2QlT63YepPfs,8006
|
|
86
86
|
waldiez/models/agents/rag_user/__init__.py,sha256=sGMVeg7J0QYclnS_iiM5XP6Lz_M9_Vvdz8_mpf0Ft3o,1382
|
|
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
|
-
waldiez/models/agents/rag_user/retrieve_config.py,sha256=
|
|
89
|
+
waldiez/models/agents/rag_user/retrieve_config.py,sha256=FZpEK-PMBIqGEF-MZIKDfKSEt5p6IDHj3eZV7aYIMDM,30108
|
|
90
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
|
|
94
94
|
waldiez/models/agents/reasoning/reasoning_agent_reason_config.py,sha256=ip5feO_B6xPcmOspZl8gpBvgdU1XPHg2xWYdS6x8GUM,2874
|
|
95
95
|
waldiez/models/agents/swarm_agent/__init__.py,sha256=nPTmjGJS4LCaEqRHX-TlK-AJHzrDN1hR8gfPzZfx1cU,1609
|
|
96
|
-
waldiez/models/agents/swarm_agent/after_work.py,sha256=
|
|
97
|
-
waldiez/models/agents/swarm_agent/on_condition.py,sha256=
|
|
98
|
-
waldiez/models/agents/swarm_agent/on_condition_available.py,sha256=
|
|
96
|
+
waldiez/models/agents/swarm_agent/after_work.py,sha256=cOahTmEUHRsR86Jqb8vm5D5UZgu8dI_r5sme5AQwBCM,6165
|
|
97
|
+
waldiez/models/agents/swarm_agent/on_condition.py,sha256=Oxg9yyUrg168k4VdJO2GP8uJXeQ6lVZdGyctJAh3JjY,3213
|
|
98
|
+
waldiez/models/agents/swarm_agent/on_condition_available.py,sha256=jpkhD0AB64eojO1NfdvDsf71y_Zj_5b_w_qS-jX0NoE,4551
|
|
99
99
|
waldiez/models/agents/swarm_agent/on_condition_target.py,sha256=g41yZ_EnNBJyfZIOyC51MIYNT6KCjF75UXBvfDWLOCM,981
|
|
100
100
|
waldiez/models/agents/swarm_agent/swarm_agent.py,sha256=Uz2E8u0oolZCgXCxWlGv03lLjY36t2UWe_3YL03Sel8,2756
|
|
101
101
|
waldiez/models/agents/swarm_agent/swarm_agent_data.py,sha256=WQkm68A8Bl7_q-_2_X3QCpM1aqhDZaIPkIUtPN3A9yo,4046
|
|
@@ -104,45 +104,46 @@ waldiez/models/agents/user_proxy/__init__.py,sha256=jBojxeNmG7B5P7mFg7Z10ETH6AHj
|
|
|
104
104
|
waldiez/models/agents/user_proxy/user_proxy.py,sha256=QT18qFeQUmnzClqIs15jwILfG60dhva58eGrlcGamjI,1164
|
|
105
105
|
waldiez/models/agents/user_proxy/user_proxy_data.py,sha256=ni9RTUmHHWPfBk_L7QTUkUkU6AopsHfGw3uYEOTtUzQ,926
|
|
106
106
|
waldiez/models/chat/__init__.py,sha256=uivo-wYhIiu0OyqhiXeNdES4dRToPxQTNmSWGjkfH6A,1049
|
|
107
|
-
waldiez/models/chat/chat.py,sha256=
|
|
107
|
+
waldiez/models/chat/chat.py,sha256=Sey4J2uFiczRGhv8qOFV1JAXEVT-ojcLN14VcZwpbUM,10604
|
|
108
108
|
waldiez/models/chat/chat_data.py,sha256=a0ScDNtU_VgAMGzrR2Lj7mPZpY-yQKazYiiwDTfhe3A,12482
|
|
109
|
-
waldiez/models/chat/chat_message.py,sha256=
|
|
109
|
+
waldiez/models/chat/chat_message.py,sha256=X70P8ytqVt6wbwWUvl-8ANBOBGnaEm5s9yJxX_0c16s,8345
|
|
110
110
|
waldiez/models/chat/chat_nested.py,sha256=C1ygS7TeB5emRIIIs_xFabKgXzze0HTEO4CIexedGKw,4132
|
|
111
111
|
waldiez/models/chat/chat_summary.py,sha256=O7mHkIVpoB1Mqzf585qqemjmB1ojj8-jlK6x8TGWQcA,2960
|
|
112
112
|
waldiez/models/common/__init__.py,sha256=dOocZwZn8OHMNHK1WyiKXboi5BkB3zIoGkJErA6orWg,617
|
|
113
|
-
waldiez/models/common/ag2_version.py,sha256=
|
|
113
|
+
waldiez/models/common/ag2_version.py,sha256=AYJEFEd_x24rhUn-Vfi56HoqcD6jEFLG96UtvJLN29E,732
|
|
114
114
|
waldiez/models/common/base.py,sha256=caFhCnUH41OYyx19Zl2gHXzhlZbl8Ewmpc5t7LpYhjY,1961
|
|
115
115
|
waldiez/models/common/date_utils.py,sha256=NdVmShZjvhDVT-Y5rT8FgwQTHcDoljBJQauTsE7gwbE,437
|
|
116
116
|
waldiez/models/common/dict_utils.py,sha256=xfZ6fFJXGyW2yiPiBcGO7WKqhAlCH1sMRp_Z4__xyr0,1143
|
|
117
|
-
waldiez/models/common/method_utils.py,sha256=
|
|
117
|
+
waldiez/models/common/method_utils.py,sha256=bCLlqIohKyDLENfjrONsVfnq4d-LAsCgby7CL7TBbmg,10400
|
|
118
118
|
waldiez/models/flow/__init__.py,sha256=3UFbMMn_5c5AXs6ppkvhNeWb9jelru2lNHUjpEq0N68,309
|
|
119
|
-
waldiez/models/flow/flow.py,sha256=
|
|
119
|
+
waldiez/models/flow/flow.py,sha256=nySjYauy8A5GQTyYx8QIonrPin3L172fWS_htTw5M04,16877
|
|
120
120
|
waldiez/models/flow/flow_data.py,sha256=afD97Ff9Yd7QSXE4DphaENY7wqrq4QIl4EVgI8O4ZFk,5464
|
|
121
121
|
waldiez/models/flow/utils.py,sha256=X_jelP5lHuQt1OZE6sxLlhEKbkkt8jZgbkF79e9rQig,7140
|
|
122
122
|
waldiez/models/model/__init__.py,sha256=jyJHJWzqNxnmDHAhpXWMnMK_4VF2olPIE3k7KV7_xVg,532
|
|
123
|
-
waldiez/models/model/extra_requirements.py,sha256=
|
|
123
|
+
waldiez/models/model/extra_requirements.py,sha256=UskYG8CkzUoV-lMK1IDkbfpNHoJnBJX6adSqn2ixEDY,1678
|
|
124
124
|
waldiez/models/model/model.py,sha256=kvF1LdcIUfAEoBgfVC-nVbib9k5mma2hSGNDvf0vMaQ,7745
|
|
125
125
|
waldiez/models/model/model_data.py,sha256=xB6ovuB5Rvz9Jc3A_K8CEI55E4EPLofGuVcN4ehxkvE,3794
|
|
126
126
|
waldiez/models/skill/__init__.py,sha256=EMkjfsMUU-2H5cZ4NhzHJWuyaSp605whT-zf7Gxt4aA,470
|
|
127
|
-
waldiez/models/skill/extra_requirements.py,sha256=
|
|
127
|
+
waldiez/models/skill/extra_requirements.py,sha256=dpvcZFo8Sabu8cO6uhGnF6Lkei93rCcWtL9Lmnz-80Q,1011
|
|
128
128
|
waldiez/models/skill/skill.py,sha256=Dw7sqxj78i430eTIOrkH8OFBJVLefgyJkoBn11foOx0,9083
|
|
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
|
-
waldiez/running/__init__.py,sha256=
|
|
132
|
-
waldiez/running/environment.py,sha256=
|
|
133
|
-
waldiez/running/gen_seq_diagram.py,sha256=
|
|
134
|
-
waldiez/running/running.py,sha256=
|
|
135
|
-
waldiez/utils/__init__.py,sha256=
|
|
136
|
-
waldiez/utils/conflict_checker.py,sha256=
|
|
131
|
+
waldiez/running/__init__.py,sha256=YwFm4LZueb3GPK5NE6nFpUrXx1kCDVD-iq_ytFZPCy4,661
|
|
132
|
+
waldiez/running/environment.py,sha256=W_2vhDwDXuw4JkcfVsm0W5r4IEWFT1kOxTOja_HVpRw,4277
|
|
133
|
+
waldiez/running/gen_seq_diagram.py,sha256=eK4Lw53FQGxsFw5cgvDiYoHgOuEOBpmkMXujn1KM4zo,5700
|
|
134
|
+
waldiez/running/running.py,sha256=BiyKps4a2algca1iEtUJZTsDiq_y2YIlaxCzgD77C60,11041
|
|
135
|
+
waldiez/utils/__init__.py,sha256=eXTOaK9bP7IEEJaFT2_WtiEl-eBfk8G-VoQC_pURoCA,476
|
|
136
|
+
waldiez/utils/conflict_checker.py,sha256=wJTMTbRP06BwBMYPUxkyOCNTTG745c13iBlmhwyaMMI,1343
|
|
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=kZNcb2LhMNVGHN_hwndo3O7zWL9LquQQFuAWT43Kfxk,9832
|
|
139
|
+
waldiez/utils/rdps_checker.py,sha256=WePaKG0eKsWmqD-ELw_1bK95C3llSrvo6Zq4ct0CDBU,3235
|
|
139
140
|
waldiez/utils/cli_extras/__init__.py,sha256=ZvuLaN3IGuffWMh7mladTGkJxx3kn5IepUF3jk4ZAWY,684
|
|
140
141
|
waldiez/utils/cli_extras/jupyter.py,sha256=C4fOiS_PbU15X-6HUZBPHvfgEjOrY39e07mClKvswPI,2971
|
|
141
142
|
waldiez/utils/cli_extras/runner.py,sha256=VZB3H1etwmacCVHEEZhOkhfNUMDuAErUXgnuHzrwMRY,888
|
|
142
143
|
waldiez/utils/cli_extras/studio.py,sha256=JTlkLuXgqDC0z79hT-LNiSqniXcql7jyz1nQ517-xKI,889
|
|
143
|
-
waldiez-0.4.
|
|
144
|
-
waldiez-0.4.
|
|
145
|
-
waldiez-0.4.
|
|
146
|
-
waldiez-0.4.
|
|
147
|
-
waldiez-0.4.
|
|
148
|
-
waldiez-0.4.
|
|
144
|
+
waldiez-0.4.6.dist-info/METADATA,sha256=HRhMbeJusyhpQtAA7e52B7QdgaaaeybdGIH-39-Km2U,16718
|
|
145
|
+
waldiez-0.4.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
146
|
+
waldiez-0.4.6.dist-info/entry_points.txt,sha256=9MQ8Y1rD19CU7UwjNPwoyTRpQsPs2QimjrtwTD0bD6k,44
|
|
147
|
+
waldiez-0.4.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
148
|
+
waldiez-0.4.6.dist-info/licenses/NOTICE.md,sha256=L7xtckFRYvYJjhjQNtFpURWCiAvEuq4ePvxJsC-XAdk,785
|
|
149
|
+
waldiez-0.4.6.dist-info/RECORD,,
|
|
@@ -186,13 +186,13 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
|
193
193
|
You may obtain a copy of the License at
|
|
194
194
|
|
|
195
|
-
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
196
|
|
|
197
197
|
Unless required by applicable law or agreed to in writing, software
|
|
198
198
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# NOTICE
|
|
2
|
+
|
|
3
|
+
Copyright 2024 - 2025 Waldiez and contributors.
|
|
4
|
+
|
|
5
|
+
This Work includes Software developed by Waldiez (<https://waldiez.io/>).
|
|
6
|
+
|
|
7
|
+
## Trademarks
|
|
8
|
+
|
|
9
|
+
You may use our Mark, but not the Project's logos, to truthfully describe the relationship between your software and ours. Our Mark should be used after a verb or preposition that describes the relationship between your software and ours. So you may say, for example, "Bob's software for the Waldiez platform" but may not say "Bob's Waldiez software." Some other examples that may work for you are:
|
|
10
|
+
|
|
11
|
+
- *[Your software]* uses software developed by Waldiez
|
|
12
|
+
- *[Your software]* is powered by Waldiez software
|
|
13
|
+
- *[Your software]* runs using software developed by Waldiez
|
|
14
|
+
- *[Your software]* for use with software developed by Waldiez
|
|
File without changes
|
|
File without changes
|