waldiez 0.4.4__py3-none-any.whl → 0.4.5__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.

Files changed (47) hide show
  1. waldiez/__init__.py +21 -2
  2. waldiez/_version.py +5 -2
  3. waldiez/cli.py +19 -4
  4. waldiez/exporter.py +8 -4
  5. waldiez/exporting/agent/utils/captain_agent.py +4 -1
  6. waldiez/exporting/agent/utils/group_manager.py +0 -1
  7. waldiez/exporting/agent/utils/rag_user/rag_user.py +1 -0
  8. waldiez/exporting/agent/utils/swarm_agent.py +1 -0
  9. waldiez/exporting/base/base_exporter.py +2 -2
  10. waldiez/exporting/base/mixin.py +3 -0
  11. waldiez/exporting/base/utils/comments.py +2 -0
  12. waldiez/exporting/chats/utils/sequential.py +1 -1
  13. waldiez/exporting/chats/utils/single_chat.py +3 -0
  14. waldiez/exporting/chats/utils/swarm.py +3 -0
  15. waldiez/exporting/flow/flow_exporter.py +2 -0
  16. waldiez/exporting/flow/utils/def_main.py +1 -0
  17. waldiez/exporting/flow/utils/flow_content.py +3 -0
  18. waldiez/exporting/flow/utils/flow_names.py +1 -0
  19. waldiez/exporting/flow/utils/importing_utils.py +1 -0
  20. waldiez/exporting/flow/utils/logging_utils.py +8 -8
  21. waldiez/exporting/skills/skills_exporter.py +1 -1
  22. waldiez/exporting/skills/utils.py +5 -3
  23. waldiez/models/__init__.py +1 -0
  24. waldiez/models/agents/agent/agent.py +1 -1
  25. waldiez/models/agents/agent/termination_message.py +1 -0
  26. waldiez/models/agents/group_manager/speakers.py +1 -1
  27. waldiez/models/agents/rag_user/retrieve_config.py +1 -0
  28. waldiez/models/agents/swarm_agent/after_work.py +0 -1
  29. waldiez/models/agents/swarm_agent/on_condition.py +1 -0
  30. waldiez/models/agents/swarm_agent/on_condition_available.py +1 -0
  31. waldiez/models/chat/chat.py +2 -0
  32. waldiez/models/chat/chat_message.py +1 -0
  33. waldiez/models/common/method_utils.py +11 -2
  34. waldiez/models/flow/flow.py +1 -0
  35. waldiez/models/skill/extra_requirements.py +1 -0
  36. waldiez/models/waldiez.py +5 -5
  37. waldiez/runner.py +4 -2
  38. waldiez/running/environment.py +1 -1
  39. waldiez/running/gen_seq_diagram.py +3 -2
  40. waldiez/utils/check_rdps.py +18 -0
  41. {waldiez-0.4.4.dist-info → waldiez-0.4.5.dist-info}/METADATA +79 -16
  42. {waldiez-0.4.4.dist-info → waldiez-0.4.5.dist-info}/RECORD +46 -45
  43. {waldiez-0.4.4.dist-info → waldiez-0.4.5.dist-info}/licenses/LICENSE +2 -2
  44. waldiez-0.4.5.dist-info/licenses/NOTICE.md +14 -0
  45. waldiez-0.4.4.dist-info/licenses/NOTICE.md +0 -5
  46. {waldiez-0.4.4.dist-info → waldiez-0.4.5.dist-info}/WHEEL +0 -0
  47. {waldiez-0.4.4.dist-info → waldiez-0.4.5.dist-info}/entry_points.txt +0 -0
waldiez/__init__.py CHANGED
@@ -2,15 +2,35 @@
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
3
  """Waldiez package."""
4
4
 
5
- from ._version import __version__
6
5
  from .exporter import WaldiezExporter
7
6
  from .models import Waldiez
8
7
  from .runner import WaldiezRunner
9
8
  from .utils import check_conflicts, check_flaml_warnings
10
9
 
10
+ # flake8: noqa: F401
11
+ # pylint: disable=import-error,line-too-long
12
+ # pyright: reportMissingImports=false
13
+ try:
14
+ from ._version import ( # type: ignore[unused-ignore, unused-import, import-not-found, import-untyped] # noqa
15
+ __version__,
16
+ )
17
+ except ImportError: # pragma: no cover
18
+ # Fallback when using the package in dev mode without installing
19
+ # in editable mode with pip. It is highly recommended to install
20
+ # the package from a stable release or in editable mode:
21
+ # https://pip.pypa.io/en/stable/topics/local-project-installs/#editable-installs
22
+ import warnings
23
+
24
+ warnings.warn(
25
+ "Importing __version__ failed. Using 'dev' as version.", stacklevel=2
26
+ )
27
+ __version__ = "dev"
28
+
29
+
11
30
  __WALDIEZ_INITIALIZED = False
12
31
 
13
32
  if not __WALDIEZ_INITIALIZED:
33
+ __WALDIEZ_INITIALIZED = True
14
34
  check_conflicts()
15
35
  check_flaml_warnings()
16
36
  # let's skip the one below
@@ -20,7 +40,6 @@ if not __WALDIEZ_INITIALIZED:
20
40
  # before calling pip install pyautogen[captainagent]
21
41
  # we should have pysqlite3 installed (at least on windows)
22
42
  # before running a flow
23
- __WALDIEZ_INITIALIZED = True
24
43
 
25
44
  __all__ = [
26
45
  "Waldiez",
waldiez/_version.py CHANGED
@@ -1,5 +1,8 @@
1
1
  # SPDX-License-Identifier: Apache-2.0.
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
- """Version information for Waldiez."""
3
+ """Version information for waldiez.
4
4
 
5
- __version__ = "0.4.4"
5
+ This file is automatically generated by Hatchling.
6
+ Do not edit this file directly.
7
+ """
8
+ __version__ = VERSION = "0.4.5"
waldiez/cli.py CHANGED
@@ -1,6 +1,7 @@
1
1
  # SPDX-License-Identifier: Apache-2.0.
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
- # pylint: disable=missing-function-docstring,missing-param-doc,missing-raises-doc # noqa: E501
3
+ # flake8: noqa: E501
4
+ # pylint: disable=missing-function-docstring,missing-param-doc,missing-raises-doc
4
5
  """Command line interface to convert or run a waldiez file."""
5
6
 
6
7
  import json
@@ -14,7 +15,21 @@ import anyio
14
15
  import typer
15
16
  from typing_extensions import Annotated
16
17
 
17
- from ._version import __version__
18
+ # pylint: disable=import-error,line-too-long
19
+ # pyright: reportMissingImports=false
20
+ try: # pragma: no cover
21
+ from ._version import ( # type: ignore[unused-ignore, unused-import, import-not-found, import-untyped] # noqa
22
+ __version__,
23
+ )
24
+ except ImportError: # pragma: no cover
25
+ import warnings
26
+
27
+ warnings.warn(
28
+ "Importing __version__ failed. Using 'dev' as version.", stacklevel=2
29
+ )
30
+ __version__ = "dev"
31
+
32
+
18
33
  from .exporter import WaldiezExporter
19
34
  from .models import Waldiez
20
35
  from .runner import WaldiezRunner
@@ -70,7 +85,7 @@ def run(
70
85
  resolve_path=True,
71
86
  ),
72
87
  ],
73
- output: Optional[Path] = typer.Option(
88
+ output: Optional[Path] = typer.Option( # noqa: B008
74
89
  None,
75
90
  help=(
76
91
  "Path to the output (.py) file. "
@@ -80,7 +95,7 @@ def run(
80
95
  dir_okay=False,
81
96
  resolve_path=True,
82
97
  ),
83
- force: bool = typer.Option(
98
+ force: bool = typer.Option( # noqa: B008
84
99
  False,
85
100
  help="Override the output file if it already exists.",
86
101
  ),
waldiez/exporter.py CHANGED
@@ -1,6 +1,8 @@
1
1
  # SPDX-License-Identifier: Apache-2.0.
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
3
  """
4
+ Waldiez exporter class.
5
+
4
6
  The role of the exporter is to export the model's data
5
7
  to an autogen's flow with one or more chats.
6
8
 
@@ -20,18 +22,20 @@ from .models import Waldiez
20
22
  class WaldiezExporter:
21
23
  """Waldiez exporter.
22
24
 
23
- Attributes:
25
+ Attributes
26
+ ----------
24
27
  waldiez (Waldiez): The Waldiez instance.
25
28
  """
26
29
 
27
30
  def __init__(self, waldiez: Waldiez) -> None:
28
31
  """Initialize the Waldiez exporter.
29
32
 
30
- Parameters:
31
- waldiez (Waldiez): The Waldiez instance.
33
+ Parameters
34
+ ----------
35
+ waldiez: Waldiez
36
+ The Waldiez instance.
32
37
  """
33
38
  self.waldiez = waldiez
34
- # self._initialize()
35
39
 
36
40
  @classmethod
37
41
  def load(cls, file_path: Path) -> "WaldiezExporter":
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0.
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
- """ "Extras for exporting a captain agent."""
3
+ """Extras for exporting a captain agent."""
4
4
 
5
5
  import json
6
6
  import os
@@ -37,6 +37,7 @@ def get_captain_agent_extras(
37
37
  The serializer to use.
38
38
  output_dir : Optional[Union[str, Path]]
39
39
  The output directory to save the agent lib and nested config.
40
+
40
41
  Returns
41
42
  -------
42
43
  str
@@ -90,6 +91,7 @@ def generate_nested_config(
90
91
  All the models in the flow.
91
92
  save_path : str
92
93
  The path to save the nested config.
94
+
93
95
  Returns
94
96
  -------
95
97
  Dict[str, Any]
@@ -131,6 +133,7 @@ def get_llm_config(
131
133
  The agent.
132
134
  all_models : List[WaldiezModel]
133
135
  All the models in the flow.
136
+
134
137
  Returns
135
138
  -------
136
139
  Dict[str, str]
@@ -31,7 +31,6 @@ def get_group_manager_extras(
31
31
  Tuple[str, str]
32
32
  The content before the agent string and the group chat argument.
33
33
  """
34
-
35
34
  group_chat_arg = ""
36
35
  before_agent_string = ""
37
36
  custom_speaker_selection: Optional[str] = None
@@ -83,6 +83,7 @@ def get_rag_user_retrieve_config_str(
83
83
  The path resolver function.
84
84
  serializer : Callable[..., str]
85
85
  The serializer function.
86
+
86
87
  Returns
87
88
  -------
88
89
  Tuple[str, str, Set[str]]
@@ -55,6 +55,7 @@ def get_swarm_extras(
55
55
  The serializer to get the string representation of an object.
56
56
  string_escape : Callable[[str], str]
57
57
  The function to escape the string quotes and newlines.
58
+
58
59
  Returns
59
60
  -------
60
61
  Tuple[str, str, str]
@@ -10,7 +10,7 @@ from .export_position import ExportPosition
10
10
  from .import_position import ImportPosition
11
11
 
12
12
 
13
- # flake8: noqa: E501
13
+ # flake8: noqa: E501,B027
14
14
  # pylint: disable=line-too-long
15
15
  class ExporterReturnType(TypedDict):
16
16
  """Exporter Return Type.
@@ -66,7 +66,7 @@ class BaseExporter(abc.ABC):
66
66
  """
67
67
 
68
68
  def get_imports(self) -> Optional[List[Tuple[str, ImportPosition]]]:
69
- """ "Generate the imports string for the exporter.
69
+ """Generate the imports string for the exporter.
70
70
 
71
71
  Returns
72
72
  -------
@@ -28,6 +28,7 @@ class ExporterMixin:
28
28
  The item.
29
29
  tabs : int, optional
30
30
  The number of tabs for indentation, by default 1.
31
+
31
32
  Returns
32
33
  -------
33
34
  str
@@ -77,6 +78,7 @@ class ExporterMixin:
77
78
  The comment key.
78
79
  for_notebook : bool
79
80
  Whether the comment is for a notebook or not.
81
+
80
82
  Returns
81
83
  -------
82
84
  str
@@ -121,6 +123,7 @@ class ExporterMixin:
121
123
  The prefix for the instance name, by default "w".
122
124
  max_length : int, optional
123
125
  The maximum length of the variable name, by default 64
126
+
124
127
  Returns
125
128
  -------
126
129
  Dict[str, str]
@@ -1,6 +1,8 @@
1
1
  # SPDX-License-Identifier: Apache-2.0.
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
3
  """Utilities for comments.
4
+
5
+ Functions
4
6
  ---------
5
7
  comment
6
8
  Get a comment string.
@@ -23,7 +23,7 @@ def export_sequential_chat(
23
23
  tabs: int,
24
24
  is_async: bool,
25
25
  ) -> Tuple[str, str]:
26
- """Get the chats content, when there are more than one chats in the flow.
26
+ r"""Get the chats content, when there are more than one chats in the flow.
27
27
 
28
28
  Parameters
29
29
  ----------
@@ -49,6 +49,7 @@ def export_single_chat(
49
49
  The number of tabs to use for indentation.
50
50
  is_async : bool
51
51
  Whether the chat is asynchronous.
52
+
52
53
  Returns
53
54
  -------
54
55
  Tuple[str, str]
@@ -154,6 +155,7 @@ def get_simple_chat_string(
154
155
  The number of tabs to use for indentation.
155
156
  is_async : bool
156
157
  Whether the chat is asynchronous.
158
+
157
159
  Returns
158
160
  -------
159
161
  Tuple[str, str]
@@ -218,6 +220,7 @@ def get_empty_simple_chat_string(
218
220
  The tab string.
219
221
  is_async : bool
220
222
  Whether the chat is asynchronous.
223
+
221
224
  Returns
222
225
  -------
223
226
  Tuple[str, str]
@@ -47,6 +47,7 @@ def export_swarm_chat(
47
47
  The number of tabs to use for indentation.
48
48
  is_async : bool
49
49
  Whether the chat is asynchronous.
50
+
50
51
  Returns
51
52
  -------
52
53
  Tuple[str, str]
@@ -124,6 +125,7 @@ def get_swarm_agents_strings(
124
125
  A mapping of agent id to agent name.
125
126
  user_agent : Optional[WaldiezAgent]
126
127
  The user agent.
128
+
127
129
  Returns
128
130
  -------
129
131
  Tuple[str, str]
@@ -190,6 +192,7 @@ def get_swarm_after_work_string(
190
192
  A mapping of agent id to agent name.
191
193
  name_suffix : str
192
194
  The suffix to use for the function name.
195
+
193
196
  Returns
194
197
  -------
195
198
  Tuple[str, str]
@@ -197,6 +197,7 @@ class FlowExporter(BaseExporter, ExporterMixin):
197
197
  chats_content : str
198
198
  The chats content.
199
199
  before_chats : str
200
+
200
201
  Returns
201
202
  -------
202
203
  str
@@ -412,6 +413,7 @@ class FlowExporter(BaseExporter, ExporterMixin):
412
413
  The before export.
413
414
  after_export : List[Tuple[str, Union[ExportPosition, AgentPosition]]]
414
415
  The after export.
416
+
415
417
  Returns
416
418
  -------
417
419
  str
@@ -28,6 +28,7 @@ def get_def_main(
28
28
  Whether the main function is asynchronous.
29
29
  cache_seed : Optional[int]
30
30
  The seed for the cache. If None, cache should be disabled.
31
+
31
32
  Returns
32
33
  -------
33
34
  str
@@ -16,6 +16,7 @@ def get_py_content_start(waldiez: Waldiez) -> str:
16
16
  ----------
17
17
  waldiez : Waldiez
18
18
  The waldiez object.
19
+
19
20
  Returns
20
21
  -------
21
22
  str
@@ -46,6 +47,7 @@ def get_ipynb_content_start(
46
47
  The waldiez object.
47
48
  comment : Callable[[bool, int], str]
48
49
  The function to create a comment.
50
+
49
51
  Returns
50
52
  -------
51
53
  str
@@ -130,6 +132,7 @@ def get_after_run_content(
130
132
  The dictionary of agent names and their corresponding ids
131
133
  tabs : int
132
134
  The number of tabs to add before the content.
135
+
133
136
  Returns
134
137
  -------
135
138
  str
@@ -46,6 +46,7 @@ def ensure_unique_names(
46
46
  The maximum length of the name, by default 64
47
47
  flow_name_max_length : int, optional
48
48
  The maximum length of the flow name, by default 20
49
+
49
50
  Returns
50
51
  -------
51
52
  ResultType
@@ -102,6 +102,7 @@ def get_the_imports_string(
102
102
  All the imports.
103
103
  is_async : bool
104
104
  If the flow is async.
105
+
105
106
  Returns
106
107
  -------
107
108
  str
@@ -17,7 +17,7 @@ get_sqlite_to_csv_call_string
17
17
 
18
18
 
19
19
  def get_start_logging(is_async: bool, tabs: int = 0) -> str:
20
- """Get the logging start call string.
20
+ r"""Get the logging start call string.
21
21
 
22
22
  Parameters
23
23
  ----------
@@ -70,7 +70,7 @@ def get_start_logging(is_async: bool, tabs: int = 0) -> str:
70
70
 
71
71
  # pylint: disable=differing-param-doc,differing-type-doc
72
72
  def get_sync_sqlite_out() -> str:
73
- """Get the sqlite to csv and json conversion code string.
73
+ r"""Get the sqlite to csv and json conversion code string.
74
74
 
75
75
  Returns
76
76
  -------
@@ -84,8 +84,8 @@ def get_sync_sqlite_out() -> str:
84
84
  def get_sqlite_out(dbname: str, table: str, csv_file: str) -> None:
85
85
  \"\"\"Convert a sqlite table to csv and json files.
86
86
 
87
- Parameters
88
- ----------
87
+ Parameters
88
+ ----------
89
89
  dbname : str
90
90
  The sqlite database name.
91
91
  table : str
@@ -152,7 +152,7 @@ def get_sync_sqlite_out() -> str:
152
152
 
153
153
  # pylint: disable=differing-param-doc,differing-type-doc,line-too-long
154
154
  def get_async_sqlite_out() -> str:
155
- """Get the sqlite to csv and json conversion code string.
155
+ r"""Get the sqlite to csv and json conversion code string.
156
156
 
157
157
  Returns
158
158
  -------
@@ -166,8 +166,8 @@ def get_async_sqlite_out() -> str:
166
166
  async def get_sqlite_out(dbname: str, table: str, csv_file: str) -> None:
167
167
  \"\"\"Convert a sqlite table to csv and json files.
168
168
 
169
- Parameters
170
- ----------
169
+ Parameters
170
+ ----------
171
171
  dbname : str
172
172
  The sqlite database name.
173
173
  table : str
@@ -313,7 +313,7 @@ def get_sqlite_out_call(tabs: int, is_async: bool) -> str:
313
313
 
314
314
 
315
315
  def get_stop_logging(tabs: int, is_async: bool) -> str:
316
- """Get the function to stop logging and gather logs.
316
+ r"""Get the function to stop logging and gather logs.
317
317
 
318
318
  Parameters
319
319
  ----------
@@ -82,7 +82,7 @@ class SkillsExporter(BaseExporter, ExporterMixin):
82
82
  return self.skill_secrets
83
83
 
84
84
  def get_imports(self) -> List[Tuple[str, ImportPosition]]:
85
- """ "Generate the imports string.
85
+ """Generate the imports string.
86
86
 
87
87
  Returns
88
88
  -------
@@ -23,7 +23,7 @@ def get_agent_skill_registration(
23
23
  skill_description: str,
24
24
  string_escape: Callable[[str], str],
25
25
  ) -> str:
26
- """Get the agent skill string and secrets.
26
+ r"""Get the agent skill string and secrets.
27
27
 
28
28
  Parameters
29
29
  ----------
@@ -37,6 +37,7 @@ def get_agent_skill_registration(
37
37
  The skill description.
38
38
  string_escape : Callable[[str], str]
39
39
  The string escape function.
40
+
40
41
  Returns
41
42
  -------
42
43
  str
@@ -220,7 +221,6 @@ def _sort_imports(
220
221
  Tuple[List[str], List[str], List[str]]
221
222
  The sorted skill imports.
222
223
  """
223
-
224
224
  # "from x import y" and "import z"
225
225
  # the "import a" should be first (and sorted)
226
226
  # then the "from b import c" (and sorted)
@@ -254,6 +254,7 @@ def get_skill_secrets_import(flow_name: str, skill: WaldiezSkill) -> str:
254
254
  The name of the flow.
255
255
  skill : WaldiezSkill
256
256
  The skill.
257
+
257
258
  Returns
258
259
  -------
259
260
  str
@@ -274,7 +275,7 @@ def get_agent_skill_registrations(
274
275
  skill_names: Dict[str, str],
275
276
  string_escape: Callable[[str], str],
276
277
  ) -> str:
277
- """Get the agent skill registrations.
278
+ r"""Get the agent skill registrations.
278
279
 
279
280
  example output:
280
281
 
@@ -333,6 +334,7 @@ def get_agent_skill_registrations(
333
334
  A mapping of skill id to skill name.
334
335
  string_escape : Callable[[str], str]
335
336
  The string escape function.
337
+
336
338
  Returns
337
339
  -------
338
340
  str
@@ -1,6 +1,7 @@
1
1
  # SPDX-License-Identifier: Apache-2.0.
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
3
  """Waldiez models.
4
+
4
5
  - Agents (Users, Assistants, Group Managers, etc.).
5
6
  - Chat (Messages, Summaries, etc.).
6
7
  - Model (LLM config, API type, etc.).
@@ -148,7 +148,7 @@ class WaldiezAgent(WaldiezBase):
148
148
  def ag2_imports(self) -> Set[str]:
149
149
  """Return the AG2 imports of the agent."""
150
150
  agent_class = self.ag2_class
151
- imports = set(["import autogen"])
151
+ imports = {"import autogen"}
152
152
  if agent_class == "AssistantAgent":
153
153
  imports.add("from autogen import AssistantAgent")
154
154
  elif agent_class == "UserProxyAgent":
@@ -192,6 +192,7 @@ class WaldiezAgentTerminationMessage(WaldiezBase):
192
192
  ------
193
193
  ValueError
194
194
  If the configuration is invalid.
195
+
195
196
  Returns
196
197
  -------
197
198
  WaldiezAgentTerminationMessage
@@ -31,7 +31,7 @@ CUSTOM_SPEAKER_SELECTION_TYPES = (
31
31
 
32
32
 
33
33
  class WaldiezGroupManagerSpeakers(WaldiezBase):
34
- """Group chat speakers.
34
+ r"""Group chat speakers.
35
35
 
36
36
  If the method for the speaker selection is `custom`
37
37
  the `selection_custom_method` contents (source code) will be used.
@@ -844,6 +844,7 @@ def resolve_path(path: str, is_raw: bool, must_exist: bool) -> str:
844
844
  If the path is a raw string.
845
845
  must_exist : bool
846
846
  If the path must exist.
847
+
847
848
  Returns
848
849
  -------
849
850
  Path
@@ -35,7 +35,6 @@ CUSTOM_AFTER_WORK_TYPES = (
35
35
  class WaldiezSwarmAfterWork(WaldiezBase):
36
36
  """Swarm after work.
37
37
 
38
-
39
38
  Attributes
40
39
  ----------
41
40
  recipient : str
@@ -93,6 +93,7 @@ class WaldiezSwarmOnCondition(WaldiezBase):
93
93
  The prefix to add to the function name. Default is None.
94
94
  name_suffix : str, optional
95
95
  The suffix to add to the function name. Default is None.
96
+
96
97
  Returns
97
98
  -------
98
99
  Tuple[str, str]
@@ -84,6 +84,7 @@ class WaldiezSwarmOnConditionAvailable(WaldiezBase):
84
84
  The prefix to add to the function name. Default is None.
85
85
  name_suffix : str, optional
86
86
  The suffix to add to the function name. Default is None.
87
+
87
88
  Returns
88
89
  -------
89
90
  Tuple[str, str]
@@ -318,6 +318,7 @@ class WaldiezChat(WaldiezBase):
318
318
  Whether to get the chat arguments for a chat queue.
319
319
  sender : WaldiezAgent, optional
320
320
  The sender agent, to check if it's a RAG user.
321
+
321
322
  Returns
322
323
  -------
323
324
  dict
@@ -342,6 +343,7 @@ class WaldiezChat(WaldiezBase):
342
343
  ----------
343
344
  kwargs : Any
344
345
  The keyword arguments.
346
+
345
347
  Returns
346
348
  -------
347
349
  Dict[str, Any]
@@ -204,6 +204,7 @@ def get_last_carryover_method_content(text_content: str) -> str:
204
204
  ----------
205
205
  text_content : str
206
206
  Text content before the carryover.
207
+
207
208
  Returns
208
209
  -------
209
210
  str
@@ -151,6 +151,7 @@ def check_function(
151
151
  The expected method name.
152
152
  function_args : List[str]
153
153
  The expected method arguments.
154
+
154
155
  Returns
155
156
  -------
156
157
  Tuple[bool, str]
@@ -186,6 +187,7 @@ def _validate_function_body(
186
187
  The expected method name.
187
188
  function_args : List[str]
188
189
  The expected method arguments.
190
+
189
191
  Returns
190
192
  -------
191
193
  Tuple[bool, str]
@@ -205,7 +207,11 @@ def _validate_function_body(
205
207
  f" got: {len(node.args.args)} :("
206
208
  ),
207
209
  )
208
- for arg, expected_arg in zip(node.args.args, function_args):
210
+ for arg, expected_arg in zip(
211
+ node.args.args,
212
+ function_args,
213
+ strict=False,
214
+ ):
209
215
  if arg.arg != expected_arg:
210
216
  return (
211
217
  False,
@@ -315,6 +321,7 @@ def generate_function(
315
321
  types_as_comments : bool, optional
316
322
  Include the type hints as comments (or in the function signature)
317
323
  (default is False).
324
+
318
325
  Returns
319
326
  -------
320
327
  str
@@ -327,7 +334,9 @@ def generate_function(
327
334
  function_string += ")"
328
335
  else:
329
336
  function_string += "\n"
330
- for arg, arg_type in zip(function_args, function_types[0]):
337
+ for arg, arg_type in zip(
338
+ function_args, function_types[0], strict=False
339
+ ):
331
340
  if types_as_comments:
332
341
  function_string += f" {arg}, # type: {arg_type}" + "\n"
333
342
  else:
@@ -514,6 +514,7 @@ class WaldiezFlow(WaldiezBase):
514
514
  ----------
515
515
  member : WaldiezAgent
516
516
  The only agent in the flow
517
+
517
518
  Returns
518
519
  -------
519
520
  WaldiezFlow
@@ -19,6 +19,7 @@ def get_skills_extra_requirements(
19
19
  The skills.
20
20
  autogen_version : str
21
21
  The ag2 version.
22
+
22
23
  Returns
23
24
  -------
24
25
  List[str]
waldiez/models/waldiez.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # SPDX-License-Identifier: Apache-2.0.
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
- """Waldiez
3
+ """Waldiez data class.
4
4
 
5
5
  A Waldiez class contains all the information that is needed to generate
6
6
  and run an autogen workflow. It has the model/LLM configurations, the agent
@@ -167,7 +167,7 @@ class Waldiez:
167
167
  """Get the agents.
168
168
 
169
169
  Yields
170
- -------
170
+ ------
171
171
  WaldiezAgent
172
172
  The flow agents.
173
173
  """
@@ -178,7 +178,7 @@ class Waldiez:
178
178
  """Get the flow skills.
179
179
 
180
180
  Yields
181
- -------
181
+ ------
182
182
  WaldiezSkill
183
183
  The skills.
184
184
  """
@@ -189,7 +189,7 @@ class Waldiez:
189
189
  """Get the models.
190
190
 
191
191
  Yields
192
- -------
192
+ ------
193
193
  WaldiezModel
194
194
  The flow models.
195
195
  """
@@ -276,7 +276,7 @@ class Waldiez:
276
276
  autogen_version=autogen_version,
277
277
  )
278
278
  )
279
- return sorted(list(requirements))
279
+ return sorted(requirements)
280
280
 
281
281
  def get_flow_env_vars(self) -> List[Tuple[str, str]]:
282
282
  """Get the flow environment variables.
waldiez/runner.py CHANGED
@@ -1,6 +1,7 @@
1
1
  # SPDX-License-Identifier: Apache-2.0.
2
2
  # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
3
  """Run a waldiez flow.
4
+
4
5
  The flow is first converted to an autogen flow with agents, chats and skills.
5
6
  We then chown to temporary directory, call the flow's `main()` and
6
7
  return the results. Before running the flow, any additional environment
@@ -144,9 +145,9 @@ class WaldiezRunner:
144
145
  Set[str]
145
146
  The extra requirements.
146
147
  """
147
- extra_requirements = set(
148
+ extra_requirements = {
148
149
  req for req in self.waldiez.requirements if req not in sys.modules
149
- )
150
+ }
150
151
  if self.waldiez.has_captain_agents:
151
152
  check_pysqlite3()
152
153
  return extra_requirements
@@ -185,6 +186,7 @@ class WaldiezRunner:
185
186
  The runtime uploads root.
186
187
  skip_mmd : bool
187
188
  Whether to skip the Mermaid diagram generation.
189
+
188
190
  Returns
189
191
  -------
190
192
  Union[ChatResult, List[ChatResult]]
@@ -70,7 +70,7 @@ def refresh_environment() -> None:
70
70
 
71
71
  @contextlib.contextmanager
72
72
  def _np_no_nep50_warning() -> Generator[None, None, None]:
73
- """Dummy function to avoid the warning.
73
+ """Avoid no_nep50 warning.
74
74
 
75
75
  Yields
76
76
  ------
@@ -69,12 +69,12 @@ def process_events(df_events: pd.DataFrame) -> str:
69
69
  ----------
70
70
  df_events : pd.DataFrame
71
71
  The DataFrame containing the events data.
72
+
72
73
  Returns
73
74
  -------
74
75
  str
75
76
  The Mermaid sequence diagram text.
76
77
  """
77
-
78
78
  # Set to store participants (senders and recipients)
79
79
  participants: Set[str] = set()
80
80
  recipient: str
@@ -150,7 +150,7 @@ def save_diagram(mermaid_text: str, output_path: Union[str, Path]) -> None:
150
150
  def generate_sequence_diagram(
151
151
  file_path: Union[str, Path], output_path: Union[str, Path]
152
152
  ) -> None:
153
- """Main function to generate the Mermaid diagram.
153
+ """Generate the Mermaid diagram.
154
154
 
155
155
  Parameters
156
156
  ----------
@@ -163,6 +163,7 @@ def generate_sequence_diagram(
163
163
  ------
164
164
  FileNotFoundError
165
165
  If the input file is not found.
166
+
166
167
  ValueError
167
168
  If the input file is not a JSON or CSV file.
168
169
  """
@@ -0,0 +1,18 @@
1
+ # SPDX-License-Identifier: Apache-2.0.
2
+ # Copyright (c) 2024 - 2025 Waldiez and contributors.
3
+ """
4
+ Check for rpds-py on Windows ARM64.
5
+
6
+ Since we cannot use direct git dependency on `rpds-py` in `pyproject.toml`,
7
+ let's check it here.
8
+
9
+ NOTE: We should regularly check if this is still needed.
10
+ """
11
+ # "rpds-py @ git+https://github.com/crate-py/rpds.git@v0.24.0 ;
12
+ # sys_platform == "win32" and platform_machine == "arm64"",
13
+ # "rpds-py @ git+https://github.com/crate-py/rpds.git@v0.24.0 ;
14
+ # sys_platform == "win32" and platform_machine == "ARM64"",
15
+ # "rpds-py @ git+https://github.com/crate-py/rpds.git@v0.24.0 ;
16
+ # sys_platform == "win32" and platform_machine == "aarch64"",
17
+ # "rpds-py @ git+https://github.com/crate-py/rpds.git@v0.24.0 ;
18
+ # sys_platform == "win32" and platform_machine == "AARCH64"",
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: waldiez
3
- Version: 0.4.4
3
+ Version: 0.4.5
4
+ Dynamic: Keywords
4
5
  Summary: Make AI Agents Collaborate: Drag, Drop, and Orchestrate with Waldiez.
5
- Project-URL: homepage, https://waldiez.io
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
9
- Author-email: Panagiotis Kasnesis <pkasnesis@waldiez.io>, Lazaros Toumanidis <laztoum@waldiez.io>, Stella Ioannidou <stella@humancentered.gr>
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
@@ -88,7 +88,7 @@ Requires-Dist: autoflake==2.3.1; extra == 'dev'
88
88
  Requires-Dist: bandit==1.8.3; extra == 'dev'
89
89
  Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
90
90
  Requires-Dist: flake8==7.2.0; extra == 'dev'
91
- Requires-Dist: isort==6.0.1; extra == 'dev'
91
+ Requires-Dist: hatchling==1.27.0; extra == 'dev'
92
92
  Requires-Dist: jupyter-server==2.15.0; extra == 'dev'
93
93
  Requires-Dist: jupyterlab>=4.3.0; extra == 'dev'
94
94
  Requires-Dist: mypy==1.15.0; extra == 'dev'
@@ -100,26 +100,29 @@ Requires-Dist: python-dotenv==1.1.0; extra == 'dev'
100
100
  Requires-Dist: ruff==0.11.7; extra == 'dev'
101
101
  Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
102
102
  Requires-Dist: types-pyyaml==6.0.12.20250402; extra == 'dev'
103
+ Requires-Dist: types-requests==2.32.0.20250328; extra == 'dev'
103
104
  Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
104
105
  Requires-Dist: yamllint==1.37.0; extra == 'dev'
105
106
  Provides-Extra: docs
106
107
  Requires-Dist: mdx-include==1.4.2; extra == 'docs'
107
108
  Requires-Dist: mdx-truly-sane-lists==1.3; extra == 'docs'
109
+ Requires-Dist: mkdocs-awesome-nav; extra == 'docs'
108
110
  Requires-Dist: mkdocs-jupyter==0.25.1; extra == 'docs'
109
111
  Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
110
112
  Requires-Dist: mkdocs-material==9.6.12; extra == 'docs'
111
113
  Requires-Dist: mkdocs-minify-html-plugin==0.3.1; extra == 'docs'
114
+ Requires-Dist: mkdocs-open-in-new-tab==1.0.8; extra == 'docs'
112
115
  Requires-Dist: mkdocs==1.6.1; extra == 'docs'
113
116
  Requires-Dist: mkdocstrings-python==1.16.10; extra == 'docs'
114
117
  Requires-Dist: mkdocstrings[crystal,python]==0.29.1; extra == 'docs'
115
118
  Provides-Extra: jupyter
116
119
  Requires-Dist: jupyter-server==2.15.0; extra == 'jupyter'
117
120
  Requires-Dist: jupyterlab>=4.3.0; extra == 'jupyter'
118
- Requires-Dist: waldiez-jupyter==0.4.4; extra == 'jupyter'
121
+ Requires-Dist: waldiez-jupyter==0.4.5; extra == 'jupyter'
119
122
  Provides-Extra: runner
120
- Requires-Dist: waldiez-runner==0.4.4; extra == 'runner'
123
+ Requires-Dist: waldiez-runner==0.4.5; (python_version >= '3.11') and extra == 'runner'
121
124
  Provides-Extra: studio
122
- Requires-Dist: waldiez-studio==0.4.4; extra == 'studio'
125
+ Requires-Dist: waldiez-studio==0.4.5; extra == 'studio'
123
126
  Provides-Extra: test
124
127
  Requires-Dist: pytest-asyncio==0.26.0; extra == 'test'
125
128
  Requires-Dist: pytest-cov==6.1.1; extra == 'test'
@@ -132,7 +135,7 @@ Description-Content-Type: text/markdown
132
135
 
133
136
  # Waldiez
134
137
 
135
- ![CI Build](https://github.com/waldiez/python/actions/workflows/main.yaml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/waldiez/python/badge.svg)](https://coveralls.io/github/waldiez/python) [![PyPI version](https://badge.fury.io/py/waldiez.svg?icon=si%3Apython)](https://badge.fury.io/py/waldiez)
138
+ ![CI Build](https://github.com/waldiez/python/actions/workflows/main.yaml/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/waldiez/python/badge.svg)](https://coveralls.io/github/waldiez/python) [![PyPI version](https://badge.fury.io/py/waldiez.svg?icon=si%3Apython)](https://badge.fury.io/py/waldiez) [![npm version](https://badge.fury.io/js/@waldiez%2Freact.svg)](https://badge.fury.io/js/@waldiez%2Freact)
136
139
 
137
140
  Translate a Waldiez flow:
138
141
 
@@ -148,16 +151,36 @@ To a python script or a jupyter notebook with the corresponding [ag2](https://gi
148
151
 
149
152
  ## Installation
150
153
 
154
+ ### Python
155
+
151
156
  On PyPI:
152
157
 
153
- ```bash
158
+ ```shell
154
159
  python -m pip install waldiez
155
160
  ```
156
161
 
157
162
  From the repository:
158
163
 
159
- ```bash
160
- python -m pip install git+https://github.com/waldiez/python.git
164
+ ```shell
165
+ python -m pip install git+https://github.com/waldiez/waldiez.git
166
+ ```
167
+
168
+ ### React Component
169
+
170
+ If you’re looking for the React component, please refer to [README.npm](https://github.com/waldiez/waldiez/blob/main/README.npm.md).
171
+
172
+ > 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).
173
+
174
+ Quick install:
175
+
176
+ ```shell
177
+ npm install @waldiez/react
178
+ # or
179
+ yarn add @waldiez/react
180
+ # or
181
+ pnpm add @waldiez/react
182
+ # or
183
+ bun add @waldiez/react
161
184
  ```
162
185
 
163
186
  ## Usage
@@ -165,7 +188,6 @@ python -m pip install git+https://github.com/waldiez/python.git
165
188
  ### UI Options
166
189
 
167
190
  - 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
191
  - There is also a jupyterlab extension [here](https://github.com/waldiez/jupyter)
170
192
  - You also can use the vscode extension:
171
193
  - [repo](https://github.com/waldiez/vscode)
@@ -268,6 +290,47 @@ runner.run(output_path=output_path)
268
290
  pip install --force --no-cache waldiez pyautogen
269
291
  ```
270
292
 
293
+ ## See also
294
+
295
+ - [Waldiez Playground](https://waldiez.github.io)
296
+ - [React Component](https://github.com/waldiez/waldiez/blob/main/README.npm.md)
297
+ - [Waldiez Studio](https://github.com/waldiez/studio)
298
+ - [Waldiez JupyterLab Extension](htttps://github.com/waldiez/jupyter)
299
+ - [Waldiez VSCode Extension](https://github.com/waldiez/vscode)
300
+
301
+ ## Contributors ✨
302
+
303
+ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
304
+
305
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
306
+ <!-- prettier-ignore-start -->
307
+ <!-- markdownlint-disable -->
308
+ <table>
309
+ <tbody>
310
+ <tr>
311
+ <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>
312
+ <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>
313
+ <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>
314
+ </tr>
315
+ </tbody>
316
+ <tfoot>
317
+ <tr>
318
+ <td align="center" size="13px" colspan="7">
319
+ <img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
320
+ <a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
321
+ </img>
322
+ </td>
323
+ </tr>
324
+ </tfoot>
325
+ </table>
326
+
327
+ <!-- markdownlint-restore -->
328
+ <!-- prettier-ignore-end -->
329
+
330
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
331
+
332
+ This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
333
+
271
334
  ## License
272
335
 
273
- This project is licensed under the [Apache License, Version 2.0 (Apache-2.0)](https://github.com/waldiez/python/blob/main/LICENSE).
336
+ 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=cXWdy5P9i_x6fHwlL5DRaIhmpfnhabo5GjASStlcLWw,819
1
+ waldiez/__init__.py,sha256=cEGX_g8FqjARFFA2sqC7EYTVLcSyCb_ucE5bhyoOb-w,1511
2
2
  waldiez/__main__.py,sha256=0dYzNrQbovRwQQvmZC6_1FDR1m71SUIOkTleO5tBnBw,203
3
- waldiez/_version.py,sha256=hOGO4PCprmYqgb60dUDZ-k6P-ZZZIbkn76oApaNS7CQ,155
4
- waldiez/cli.py,sha256=FaPWh9IHBHoC9rtyt2bKBrk7S018BX__mwtTArfv4AA,6992
5
- waldiez/exporter.py,sha256=ZuMF8cra0Shw4nkDiFuPqaQKFYrF0vPj_I3EhPyesPw,4788
3
+ waldiez/_version.py,sha256=s0suKwPVndA8w6l7zwbIHM9ef1zobcGA4f_4nqo6Jm4,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=de6Kc5etX8YPukfuj4vyF8Ke27M42NAcwK9xVAntjjg,11874
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=zrkqbn6o2D1HWCcWsdY0pa0Xul_lM03lkqNlLEWOsmU,7624
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=VCqd-lsCertwVTWVez9Z1HS_H-UmBGyNGizvC736VnI,7360
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=VjmRAF8Vc08-xUkBPqQ60okw0Hz0KNh4J4PpEFjZUyw,15967
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=gg9vH98Pf5dV42IW9HHB1Ajs6kPFVuzblFhGc_il6CU,7024
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=mfBxbnTll1NJeDmARYwxp7Dx2bgSsE09QZG0lu5Wsdc,3523
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=_QkBitZ3T6jdDx9yZTDFKToa0f9WsLKCW4FpZGjCztc,3376
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=08L5W7SuXU79UsePpG-dAuDZtkO4ltdfDEPuezdIIHM,2291
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=TYAte2hwpGkEENjCMer-6PcL2r8PE-o95hgoi_AX2eg,7841
43
- waldiez/exporting/chats/utils/single_chat.py,sha256=8pgqPuug4K6DcMc7WANAkHPw5EuONhdahytgZ37scR8,9536
44
- waldiez/exporting/chats/utils/swarm.py,sha256=KOJnUVcYql3tQgMgkzBo1q8rFtovw7o88x3L6ZUWw-c,6929
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=oRXJEG2zkEWACvRTZd0VhTt10Rdz4oW7cuyPDxnP6h4,18216
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=GxEBfX6cUGFCMdxiu_hp5TLIhIC4ohczxA1A01mHnOo,2746
51
- waldiez/exporting/flow/utils/flow_content.py,sha256=RtkCPs9tE99beivh7gG-NihdvnashxZ5BuCM-qbHpPE,5507
52
- waldiez/exporting/flow/utils/flow_names.py,sha256=GtfVRF8WYUP8Xx47AiyZ5FuuCUb22jhJn3diblbbBfM,3463
53
- waldiez/exporting/flow/utils/importing_utils.py,sha256=ysryaFF872wrtqRDAlZB2mFvXwjmkX_PG-j5vLPViWQ,7106
54
- waldiez/exporting/flow/utils/logging_utils.py,sha256=DsBuv7LLWb4i18HQkXrJV2YpjG_Jzk0ZDsM-8HJ5bMg,11720
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=l7a662slVl8h7M2I4lrI1oWwolP7ewUCZxlt_ius54A,5606
60
- waldiez/exporting/skills/utils.py,sha256=GK6UDdtz4dMMTiqvkeK6ROJNGcX52OFKDYLwDxq6hFI,10962
61
- waldiez/models/__init__.py,sha256=OsLOhFRoKYgB-7zNEdTG8BmHPiSRIlZv8NKZ6c2bVJs,3996
62
- waldiez/models/waldiez.py,sha256=G0lmD-Vm3_QO2QB9t-zHWFVwgEnHjccsnB0fxLrwWBU,9984
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=lFGoLXdTnlxdWCE0pddiPGCUWALByt8imsNCCLwaGnw,9987
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=GfyDC5NXhcTo4gcVHuHFYCaGX0w4aFFfcPSWYVG37oU,8153
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=eKd_vvKx0Eegq-gU1o7BJxFSdwwzDRhVBy0Vc9PMftM,6851
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=Dzar1Ztul6cKiQfKYUcpj75Qb-k5PjsIVcFbxMKcoto,8005
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=nZZ6r3yEl74J12kPsKJA28FpdjF79h-J72Fp4BDaiuI,30107
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=_mXYzw6_hrPqOqEIeNxulEYYynNKHmTK_Wdeb0OtfB0,6166
97
- waldiez/models/agents/swarm_agent/on_condition.py,sha256=WHOeQGEMCvp1R5NrpbmG5bIdMlI1N0SP15_Mccl40Lo,3212
98
- waldiez/models/agents/swarm_agent/on_condition_available.py,sha256=wZFknfoxcVvvDBvYrGFs39aYvIl3Zdv8EEW4prDQ1-s,4550
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,9 +104,9 @@ 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=XL50OtIYSUFvkmOxkecMsz_sWqlh3crguv6mb8b1nr0,10602
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=2vnauAWUEUByqZFSlf-mrIPZGdik5W-_AZZSVWdlQnw,8344
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
@@ -114,9 +114,9 @@ waldiez/models/common/ag2_version.py,sha256=p9EF8N2zsb14YXrbZtMIWYLUGFB_Jnjbm4o6
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=dRgkPVwIIYROXLou2qtFyDNlr5KSDX7XUo0YnsVKyvI,10284
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=Shyg-XwzloSzqLLFPwY9g_MjZHxAGy2h_qfPmK58UZs,16876
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
@@ -124,15 +124,16 @@ waldiez/models/model/extra_requirements.py,sha256=KgqzixbsvzM6Ec8rdQEVoWtyNusqW3
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=q3ZY5v6mWQ_9C0GuAmFm8DK2j8TDr9CQafTmFY0w5bc,1082
127
+ waldiez/models/skill/extra_requirements.py,sha256=mB7kqhhK8y2ACJwLjrpxY51F53ET50HfWX92Ccv9Vkc,1083
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
131
  waldiez/running/__init__.py,sha256=hptO_sDFv0Alg-YJmLN-A49SeQ4YyWUMP8nBH21qO-o,633
132
- waldiez/running/environment.py,sha256=bRoCYAhbDiCdmF7lPB2KP6f-tHIX7KISRv3MuZWKsmg,3719
133
- waldiez/running/gen_seq_diagram.py,sha256=wIsbAddASKNb-pRQhCIhouWGLuhX2Xja5x5xHCCSqHk,5716
132
+ waldiez/running/environment.py,sha256=NyCA-CnHSLR_ctP2y4OLT7-CyVs3c9005WPYc5R-2co,3706
133
+ waldiez/running/gen_seq_diagram.py,sha256=eK4Lw53FQGxsFw5cgvDiYoHgOuEOBpmkMXujn1KM4zo,5700
134
134
  waldiez/running/running.py,sha256=zlHdCUhIVkzA4fYpW9oRJwLEm-gHLz_4cpPWeUafK98,11002
135
135
  waldiez/utils/__init__.py,sha256=M7ZqIInj2371ojAO73OuEPZ3fF17WZVbGE-37oyJwl0,415
136
+ waldiez/utils/check_rdps.py,sha256=f7B3BWKuPch0arwYAGDzVeHYGJV78xQhvCWTJ_UnzuE,793
136
137
  waldiez/utils/conflict_checker.py,sha256=v7BNDenJSHfPBfqb4PnxaVZwjPqzWlh5w31WC9uOJL4,1369
137
138
  waldiez/utils/flaml_warnings.py,sha256=jgdS8zwzuWPodTgm9nnx3wO5MrOUbR7P7IRj9-aq2qk,601
138
139
  waldiez/utils/pysqlite3_checker.py,sha256=v6_0XRCSe_gSVHK-7pLyFPTCSnh2KYjWs0_pWcS4Y6c,8277
@@ -140,9 +141,9 @@ waldiez/utils/cli_extras/__init__.py,sha256=ZvuLaN3IGuffWMh7mladTGkJxx3kn5IepUF3
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.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,,
144
+ waldiez-0.4.5.dist-info/METADATA,sha256=89SsaH8n6eUx6sx87RZTcevm-I_L8g1_c6oWTwToET8,16177
145
+ waldiez-0.4.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
146
+ waldiez-0.4.5.dist-info/entry_points.txt,sha256=9MQ8Y1rD19CU7UwjNPwoyTRpQsPs2QimjrtwTD0bD6k,44
147
+ waldiez-0.4.5.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
148
+ waldiez-0.4.5.dist-info/licenses/NOTICE.md,sha256=L7xtckFRYvYJjhjQNtFpURWCiAvEuq4ePvxJsC-XAdk,785
149
+ waldiez-0.4.5.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 2025 Waldiez and contributors
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
- https://www.apache.org/licenses/LICENSE-2.0
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
@@ -1,5 +0,0 @@
1
- # NOTICE
2
-
3
- Copyright 2024 - 2025 Waldiez and contributors.
4
-
5
- This Work includes Software developed by Waldiez (<https://waldiez.io/>).