waldiez 0.4.4__tar.gz → 0.4.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of waldiez might be problematic. Click here for more details.

Files changed (153) hide show
  1. waldiez-0.4.5/.gitignore +44 -0
  2. {waldiez-0.4.4 → waldiez-0.4.5}/LICENSE +2 -2
  3. waldiez-0.4.5/NOTICE.md +14 -0
  4. {waldiez-0.4.4 → waldiez-0.4.5}/PKG-INFO +79 -16
  5. {waldiez-0.4.4 → waldiez-0.4.5}/README.md +66 -6
  6. waldiez-0.4.5/pyproject.toml +396 -0
  7. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/__init__.py +21 -2
  8. waldiez-0.4.5/waldiez/_version.py +8 -0
  9. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/cli.py +19 -4
  10. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporter.py +8 -4
  11. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/captain_agent.py +4 -1
  12. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/group_manager.py +0 -1
  13. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/rag_user.py +1 -0
  14. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/swarm_agent.py +1 -0
  15. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/base_exporter.py +2 -2
  16. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/mixin.py +3 -0
  17. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/utils/comments.py +2 -0
  18. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/chats/utils/sequential.py +1 -1
  19. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/chats/utils/single_chat.py +3 -0
  20. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/chats/utils/swarm.py +3 -0
  21. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/flow_exporter.py +2 -0
  22. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/utils/def_main.py +1 -0
  23. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/utils/flow_content.py +3 -0
  24. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/utils/flow_names.py +1 -0
  25. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/utils/importing_utils.py +1 -0
  26. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/utils/logging_utils.py +8 -8
  27. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/skills/skills_exporter.py +1 -1
  28. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/skills/utils.py +5 -3
  29. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/__init__.py +1 -0
  30. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/agent.py +1 -1
  31. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/termination_message.py +1 -0
  32. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/group_manager/speakers.py +1 -1
  33. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/rag_user/retrieve_config.py +1 -0
  34. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/after_work.py +0 -1
  35. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/on_condition.py +1 -0
  36. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/on_condition_available.py +1 -0
  37. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/chat/chat.py +2 -0
  38. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/chat/chat_message.py +1 -0
  39. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/common/method_utils.py +11 -2
  40. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/flow/flow.py +1 -0
  41. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/skill/extra_requirements.py +1 -0
  42. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/waldiez.py +5 -5
  43. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/runner.py +4 -2
  44. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/running/environment.py +1 -1
  45. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/running/gen_seq_diagram.py +3 -2
  46. waldiez-0.4.5/waldiez/utils/check_rdps.py +18 -0
  47. waldiez-0.4.4/.gitignore +0 -29
  48. waldiez-0.4.4/NOTICE.md +0 -5
  49. waldiez-0.4.4/pyproject.toml +0 -392
  50. waldiez-0.4.4/waldiez/_version.py +0 -5
  51. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/__main__.py +0 -0
  52. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/__init__.py +0 -0
  53. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/__init__.py +0 -0
  54. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/agent_exporter.py +0 -0
  55. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/__init__.py +0 -0
  56. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/code_execution.py +0 -0
  57. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/__init__.py +0 -0
  58. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/chroma_utils.py +0 -0
  59. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/mongo_utils.py +0 -0
  60. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/pgvector_utils.py +0 -0
  61. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/qdrant_utils.py +0 -0
  62. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/vector_db.py +0 -0
  63. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/reasoning.py +0 -0
  64. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/teachability.py +0 -0
  65. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/agent/utils/termination_message.py +0 -0
  66. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/__init__.py +0 -0
  67. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/agent_position.py +0 -0
  68. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/export_position.py +0 -0
  69. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/import_position.py +0 -0
  70. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/utils/__init__.py +0 -0
  71. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/utils/naming.py +0 -0
  72. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/utils/path_check.py +0 -0
  73. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/base/utils/to_string.py +0 -0
  74. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/chats/__init__.py +0 -0
  75. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/chats/chats_exporter.py +0 -0
  76. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/chats/utils/__init__.py +0 -0
  77. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/chats/utils/common.py +0 -0
  78. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/chats/utils/nested.py +0 -0
  79. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/__init__.py +0 -0
  80. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/utils/__init__.py +0 -0
  81. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/utils/agent_utils.py +0 -0
  82. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/flow/utils/chat_utils.py +0 -0
  83. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/models/__init__.py +0 -0
  84. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/models/models_exporter.py +0 -0
  85. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/models/utils.py +0 -0
  86. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/exporting/skills/__init__.py +0 -0
  87. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/__init__.py +0 -0
  88. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/__init__.py +0 -0
  89. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/agent_data.py +0 -0
  90. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/agent_type.py +0 -0
  91. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/code_execution.py +0 -0
  92. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/linked_skill.py +0 -0
  93. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/nested_chat.py +0 -0
  94. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agent/teachability.py +0 -0
  95. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/agents.py +0 -0
  96. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/assistant/__init__.py +0 -0
  97. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/assistant/assistant.py +0 -0
  98. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/assistant/assistant_data.py +0 -0
  99. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/captain_agent/__init__.py +0 -0
  100. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/captain_agent/captain_agent.py +0 -0
  101. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/captain_agent/captain_agent_data.py +0 -0
  102. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/captain_agent/captain_agent_lib_entry.py +0 -0
  103. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/extra_requirements.py +0 -0
  104. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/group_manager/__init__.py +0 -0
  105. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/group_manager/group_manager.py +0 -0
  106. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/group_manager/group_manager_data.py +0 -0
  107. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/rag_user/__init__.py +0 -0
  108. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/rag_user/rag_user.py +0 -0
  109. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/rag_user/rag_user_data.py +0 -0
  110. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/rag_user/vector_db_config.py +0 -0
  111. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/reasoning/__init__.py +0 -0
  112. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/reasoning/reasoning_agent.py +0 -0
  113. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/reasoning/reasoning_agent_data.py +0 -0
  114. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py +0 -0
  115. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/__init__.py +0 -0
  116. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/on_condition_target.py +0 -0
  117. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/swarm_agent.py +0 -0
  118. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/swarm_agent_data.py +0 -0
  119. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/update_system_message.py +0 -0
  120. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/user_proxy/__init__.py +0 -0
  121. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/user_proxy/user_proxy.py +0 -0
  122. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/agents/user_proxy/user_proxy_data.py +0 -0
  123. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/chat/__init__.py +0 -0
  124. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/chat/chat_data.py +0 -0
  125. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/chat/chat_nested.py +0 -0
  126. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/chat/chat_summary.py +0 -0
  127. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/common/__init__.py +0 -0
  128. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/common/ag2_version.py +0 -0
  129. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/common/base.py +0 -0
  130. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/common/date_utils.py +0 -0
  131. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/common/dict_utils.py +0 -0
  132. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/flow/__init__.py +0 -0
  133. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/flow/flow_data.py +0 -0
  134. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/flow/utils.py +0 -0
  135. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/model/__init__.py +0 -0
  136. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/model/extra_requirements.py +0 -0
  137. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/model/model.py +0 -0
  138. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/model/model_data.py +0 -0
  139. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/skill/__init__.py +0 -0
  140. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/skill/skill.py +0 -0
  141. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/skill/skill_data.py +0 -0
  142. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/models/skill/skill_type.py +0 -0
  143. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/py.typed +0 -0
  144. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/running/__init__.py +0 -0
  145. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/running/running.py +0 -0
  146. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/utils/__init__.py +0 -0
  147. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/utils/cli_extras/__init__.py +0 -0
  148. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/utils/cli_extras/jupyter.py +0 -0
  149. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/utils/cli_extras/runner.py +0 -0
  150. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/utils/cli_extras/studio.py +0 -0
  151. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/utils/conflict_checker.py +0 -0
  152. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/utils/flaml_warnings.py +0 -0
  153. {waldiez-0.4.4 → waldiez-0.4.5}/waldiez/utils/pysqlite3_checker.py +0 -0
@@ -0,0 +1,44 @@
1
+ .local/
2
+ .venv/
3
+ node_modules/
4
+ .cache/
5
+ build/
6
+ dist/
7
+ lib/
8
+ site/
9
+ out/
10
+ public/vs
11
+ public/min-maps
12
+ public/monaco.json
13
+ **/coverage/
14
+ **/waldiez_out/
15
+ **/logs/
16
+ **/tmp/
17
+ **/documents/
18
+ **/.env
19
+ *.log
20
+ __pycache__/
21
+ *.py[cod]
22
+ *.egg
23
+ .pytest_cache/
24
+ .mypy_cache/
25
+ .dmypy.json
26
+ dmypy.json
27
+ .ruff_cache/
28
+ .DS_Store
29
+ .coverage
30
+ **/*.coverage*
31
+ **/*_db
32
+ **/*cache
33
+ **/*.log
34
+ **/*.pid
35
+ **/*.buildinfo
36
+ **/*.tsbuildinfo
37
+ **/*.egg-info
38
+ **/.DS_Store
39
+ waldiez/_version.py
40
+ **/*.mmd
41
+ docs/reference/react
42
+ docs/reference/react/assets
43
+ .uv
44
+ !**/.env.example
@@ -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,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,6 +1,6 @@
1
1
  # Waldiez
2
2
 
3
- ![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)
3
+ ![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)
4
4
 
5
5
  Translate a Waldiez flow:
6
6
 
@@ -16,16 +16,36 @@ To a python script or a jupyter notebook with the corresponding [ag2](https://gi
16
16
 
17
17
  ## Installation
18
18
 
19
+ ### Python
20
+
19
21
  On PyPI:
20
22
 
21
- ```bash
23
+ ```shell
22
24
  python -m pip install waldiez
23
25
  ```
24
26
 
25
27
  From the repository:
26
28
 
27
- ```bash
28
- python -m pip install git+https://github.com/waldiez/python.git
29
+ ```shell
30
+ python -m pip install git+https://github.com/waldiez/waldiez.git
31
+ ```
32
+
33
+ ### React Component
34
+
35
+ If you’re looking for the React component, please refer to [README.npm](https://github.com/waldiez/waldiez/blob/main/README.npm.md).
36
+
37
+ > 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).
38
+
39
+ Quick install:
40
+
41
+ ```shell
42
+ npm install @waldiez/react
43
+ # or
44
+ yarn add @waldiez/react
45
+ # or
46
+ pnpm add @waldiez/react
47
+ # or
48
+ bun add @waldiez/react
29
49
  ```
30
50
 
31
51
  ## Usage
@@ -33,7 +53,6 @@ python -m pip install git+https://github.com/waldiez/python.git
33
53
  ### UI Options
34
54
 
35
55
  - For creating-only (no exporting or running) waldiez flows, you can use the playground at <https://waldiez.github.io>.
36
- The repo for the js library is [here](https://github.com/waldiez/react).
37
56
  - There is also a jupyterlab extension [here](https://github.com/waldiez/jupyter)
38
57
  - You also can use the vscode extension:
39
58
  - [repo](https://github.com/waldiez/vscode)
@@ -136,6 +155,47 @@ runner.run(output_path=output_path)
136
155
  pip install --force --no-cache waldiez pyautogen
137
156
  ```
138
157
 
158
+ ## See also
159
+
160
+ - [Waldiez Playground](https://waldiez.github.io)
161
+ - [React Component](https://github.com/waldiez/waldiez/blob/main/README.npm.md)
162
+ - [Waldiez Studio](https://github.com/waldiez/studio)
163
+ - [Waldiez JupyterLab Extension](htttps://github.com/waldiez/jupyter)
164
+ - [Waldiez VSCode Extension](https://github.com/waldiez/vscode)
165
+
166
+ ## Contributors ✨
167
+
168
+ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
169
+
170
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
171
+ <!-- prettier-ignore-start -->
172
+ <!-- markdownlint-disable -->
173
+ <table>
174
+ <tbody>
175
+ <tr>
176
+ <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>
177
+ <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>
178
+ <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>
179
+ </tr>
180
+ </tbody>
181
+ <tfoot>
182
+ <tr>
183
+ <td align="center" size="13px" colspan="7">
184
+ <img src="https://raw.githubusercontent.com/all-contributors/all-contributors-cli/1b8533af435da9854653492b1327a23a4dbd0a10/assets/logo-small.svg">
185
+ <a href="https://all-contributors.js.org/docs/en/bot/usage">Add your contributions</a>
186
+ </img>
187
+ </td>
188
+ </tr>
189
+ </tfoot>
190
+ </table>
191
+
192
+ <!-- markdownlint-restore -->
193
+ <!-- prettier-ignore-end -->
194
+
195
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
196
+
197
+ This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
198
+
139
199
  ## License
140
200
 
141
- This project is licensed under the [Apache License, Version 2.0 (Apache-2.0)](https://github.com/waldiez/python/blob/main/LICENSE).
201
+ This project is licensed under the [Apache License, Version 2.0 (Apache-2.0)](https://github.com/waldiez/waldiez/blob/main/LICENSE).