waldiez 0.4.3__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.3 → waldiez-0.4.5}/LICENSE +2 -2
  3. waldiez-0.4.5/NOTICE.md +14 -0
  4. {waldiez-0.4.3 → waldiez-0.4.5}/PKG-INFO +119 -38
  5. {waldiez-0.4.3 → waldiez-0.4.5}/README.md +66 -6
  6. waldiez-0.4.5/pyproject.toml +396 -0
  7. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/__init__.py +21 -2
  8. waldiez-0.4.5/waldiez/_version.py +8 -0
  9. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/cli.py +19 -4
  10. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporter.py +8 -4
  11. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/captain_agent.py +4 -1
  12. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/group_manager.py +0 -1
  13. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/rag_user.py +1 -0
  14. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/swarm_agent.py +1 -0
  15. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/base_exporter.py +2 -2
  16. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/mixin.py +3 -0
  17. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/utils/comments.py +2 -0
  18. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/chats/utils/sequential.py +1 -1
  19. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/chats/utils/single_chat.py +3 -0
  20. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/chats/utils/swarm.py +3 -0
  21. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/flow_exporter.py +2 -0
  22. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/utils/def_main.py +1 -0
  23. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/utils/flow_content.py +3 -0
  24. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/utils/flow_names.py +1 -0
  25. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/utils/importing_utils.py +1 -0
  26. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/utils/logging_utils.py +8 -8
  27. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/skills/skills_exporter.py +1 -1
  28. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/skills/utils.py +5 -3
  29. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/__init__.py +1 -0
  30. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/agent.py +1 -1
  31. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/termination_message.py +1 -0
  32. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/group_manager/speakers.py +1 -1
  33. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/rag_user/retrieve_config.py +1 -0
  34. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/after_work.py +0 -1
  35. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/on_condition.py +1 -0
  36. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/on_condition_available.py +1 -0
  37. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/chat/chat.py +2 -0
  38. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/chat/chat_message.py +1 -0
  39. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/common/method_utils.py +11 -2
  40. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/flow/flow.py +1 -0
  41. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/skill/extra_requirements.py +1 -0
  42. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/waldiez.py +5 -5
  43. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/runner.py +4 -2
  44. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/running/environment.py +4 -3
  45. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/running/gen_seq_diagram.py +3 -2
  46. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/running/running.py +48 -24
  47. waldiez-0.4.5/waldiez/utils/check_rdps.py +18 -0
  48. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/utils/cli_extras/__init__.py +2 -0
  49. waldiez-0.4.5/waldiez/utils/cli_extras/runner.py +37 -0
  50. waldiez-0.4.3/.gitignore +0 -29
  51. waldiez-0.4.3/NOTICE.md +0 -5
  52. waldiez-0.4.3/pyproject.toml +0 -366
  53. waldiez-0.4.3/waldiez/_version.py +0 -5
  54. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/__main__.py +0 -0
  55. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/__init__.py +0 -0
  56. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/__init__.py +0 -0
  57. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/agent_exporter.py +0 -0
  58. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/__init__.py +0 -0
  59. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/code_execution.py +0 -0
  60. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/__init__.py +0 -0
  61. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/chroma_utils.py +0 -0
  62. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/mongo_utils.py +0 -0
  63. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/pgvector_utils.py +0 -0
  64. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/qdrant_utils.py +0 -0
  65. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/rag_user/vector_db.py +0 -0
  66. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/reasoning.py +0 -0
  67. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/teachability.py +0 -0
  68. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/agent/utils/termination_message.py +0 -0
  69. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/__init__.py +0 -0
  70. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/agent_position.py +0 -0
  71. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/export_position.py +0 -0
  72. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/import_position.py +0 -0
  73. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/utils/__init__.py +0 -0
  74. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/utils/naming.py +0 -0
  75. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/utils/path_check.py +0 -0
  76. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/base/utils/to_string.py +0 -0
  77. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/chats/__init__.py +0 -0
  78. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/chats/chats_exporter.py +0 -0
  79. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/chats/utils/__init__.py +0 -0
  80. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/chats/utils/common.py +0 -0
  81. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/chats/utils/nested.py +0 -0
  82. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/__init__.py +0 -0
  83. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/utils/__init__.py +0 -0
  84. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/utils/agent_utils.py +0 -0
  85. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/flow/utils/chat_utils.py +0 -0
  86. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/models/__init__.py +0 -0
  87. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/models/models_exporter.py +0 -0
  88. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/models/utils.py +0 -0
  89. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/exporting/skills/__init__.py +0 -0
  90. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/__init__.py +0 -0
  91. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/__init__.py +0 -0
  92. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/agent_data.py +0 -0
  93. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/agent_type.py +0 -0
  94. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/code_execution.py +0 -0
  95. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/linked_skill.py +0 -0
  96. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/nested_chat.py +0 -0
  97. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agent/teachability.py +0 -0
  98. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/agents.py +0 -0
  99. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/assistant/__init__.py +0 -0
  100. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/assistant/assistant.py +0 -0
  101. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/assistant/assistant_data.py +0 -0
  102. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/captain_agent/__init__.py +0 -0
  103. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/captain_agent/captain_agent.py +0 -0
  104. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/captain_agent/captain_agent_data.py +0 -0
  105. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/captain_agent/captain_agent_lib_entry.py +0 -0
  106. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/extra_requirements.py +0 -0
  107. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/group_manager/__init__.py +0 -0
  108. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/group_manager/group_manager.py +0 -0
  109. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/group_manager/group_manager_data.py +0 -0
  110. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/rag_user/__init__.py +0 -0
  111. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/rag_user/rag_user.py +0 -0
  112. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/rag_user/rag_user_data.py +0 -0
  113. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/rag_user/vector_db_config.py +0 -0
  114. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/reasoning/__init__.py +0 -0
  115. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/reasoning/reasoning_agent.py +0 -0
  116. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/reasoning/reasoning_agent_data.py +0 -0
  117. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/reasoning/reasoning_agent_reason_config.py +0 -0
  118. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/__init__.py +0 -0
  119. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/on_condition_target.py +0 -0
  120. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/swarm_agent.py +0 -0
  121. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/swarm_agent_data.py +0 -0
  122. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/swarm_agent/update_system_message.py +0 -0
  123. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/user_proxy/__init__.py +0 -0
  124. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/user_proxy/user_proxy.py +0 -0
  125. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/agents/user_proxy/user_proxy_data.py +0 -0
  126. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/chat/__init__.py +0 -0
  127. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/chat/chat_data.py +0 -0
  128. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/chat/chat_nested.py +0 -0
  129. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/chat/chat_summary.py +0 -0
  130. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/common/__init__.py +0 -0
  131. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/common/ag2_version.py +0 -0
  132. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/common/base.py +0 -0
  133. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/common/date_utils.py +0 -0
  134. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/common/dict_utils.py +0 -0
  135. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/flow/__init__.py +0 -0
  136. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/flow/flow_data.py +0 -0
  137. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/flow/utils.py +0 -0
  138. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/model/__init__.py +0 -0
  139. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/model/extra_requirements.py +0 -0
  140. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/model/model.py +0 -0
  141. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/model/model_data.py +0 -0
  142. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/skill/__init__.py +0 -0
  143. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/skill/skill.py +0 -0
  144. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/skill/skill_data.py +0 -0
  145. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/models/skill/skill_type.py +0 -0
  146. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/py.typed +0 -0
  147. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/running/__init__.py +0 -0
  148. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/utils/__init__.py +0 -0
  149. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/utils/cli_extras/jupyter.py +0 -0
  150. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/utils/cli_extras/studio.py +0 -0
  151. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/utils/conflict_checker.py +0 -0
  152. {waldiez-0.4.3 → waldiez-0.4.5}/waldiez/utils/flaml_warnings.py +0 -0
  153. {waldiez-0.4.3 → 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.3
4
- Summary: 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>
3
+ Version: 0.4.5
4
+ Dynamic: Keywords
5
+ Summary: Make AI 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
@@ -28,20 +28,27 @@ Requires-Dist: asyncer==0.0.8
28
28
  Requires-Dist: graphviz==0.20.3
29
29
  Requires-Dist: httpx<1
30
30
  Requires-Dist: jupytext
31
- Requires-Dist: numpy<=2.2.4
31
+ Requires-Dist: nest-asyncio==1.6.0
32
+ Requires-Dist: numpy<=2.2.5
32
33
  Requires-Dist: pandas>=2
33
34
  Requires-Dist: parso==0.8.4
34
- Requires-Dist: pyautogen[openai]==0.8.6
35
+ Requires-Dist: pyautogen[openai]==0.8.7
35
36
  Requires-Dist: pydantic<3,>=2.10.2
36
37
  Requires-Dist: typer<0.16,>=0.9
37
38
  Provides-Extra: ag2-extras
38
39
  Requires-Dist: beautifulsoup4; extra == 'ag2-extras'
39
- Requires-Dist: chromadb>=0.5.10; extra == 'ag2-extras'
40
- Requires-Dist: embedchain; extra == 'ag2-extras'
40
+ Requires-Dist: chromadb>=0.5.10; (sys_platform != 'win32') and extra == 'ag2-extras'
41
+ Requires-Dist: chromadb>=0.5.10; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
42
+ Requires-Dist: embedchain; (sys_platform != 'win32') and extra == 'ag2-extras'
43
+ Requires-Dist: embedchain; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
44
+ Requires-Dist: google-api-python-client<3.0,>=2.163.0; extra == 'ag2-extras'
45
+ Requires-Dist: google-auth-httplib2<0.3,>=0.2.0; extra == 'ag2-extras'
46
+ Requires-Dist: google-auth-oauthlib<2.0,>=1.2.1; extra == 'ag2-extras'
41
47
  Requires-Dist: huggingface-hub; extra == 'ag2-extras'
42
48
  Requires-Dist: ipython; extra == 'ag2-extras'
43
49
  Requires-Dist: langchain-community<1,>=0.3.12; extra == 'ag2-extras'
44
50
  Requires-Dist: markdownify; extra == 'ag2-extras'
51
+ Requires-Dist: mcp<1.6,>=1.4.0; extra == 'ag2-extras'
45
52
  Requires-Dist: pgvector>=0.4.0; extra == 'ag2-extras'
46
53
  Requires-Dist: protobuf>=4.25.3; extra == 'ag2-extras'
47
54
  Requires-Dist: psycopg==3.2.6; (sys_platform == 'linux') and extra == 'ag2-extras'
@@ -49,59 +56,73 @@ Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine ==
49
56
  Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'ARM64') and extra == 'ag2-extras'
50
57
  Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'aarch64') and extra == 'ag2-extras'
51
58
  Requires-Dist: psycopg==3.2.6; (sys_platform == 'win32' and platform_machine == 'arm64') and extra == 'ag2-extras'
59
+ Requires-Dist: psycopg>=3.2.6; (sys_platform == 'win32') and extra == 'ag2-extras'
52
60
  Requires-Dist: psycopg[binary]==3.2.6; (sys_platform != 'linux' and platform_machine != 'arm64' and platform_machine != 'ARM64' and platform_machine != 'aarch64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
53
- Requires-Dist: psycopg[binary]>=3.2.6; extra == 'ag2-extras'
54
- Requires-Dist: pyautogen[anthropic]==0.8.6; extra == 'ag2-extras'
55
- Requires-Dist: pyautogen[bedrock]==0.8.6; extra == 'ag2-extras'
56
- Requires-Dist: pyautogen[cohere]==0.8.6; extra == 'ag2-extras'
57
- Requires-Dist: pyautogen[gemini]==0.8.6; extra == 'ag2-extras'
58
- Requires-Dist: pyautogen[groq]==0.8.6; extra == 'ag2-extras'
59
- Requires-Dist: pyautogen[interop-crewai]==0.8.6; extra == 'ag2-extras'
60
- Requires-Dist: pyautogen[interop-langchain]==0.8.6; extra == 'ag2-extras'
61
- Requires-Dist: pyautogen[lmm]==0.8.6; extra == 'ag2-extras'
62
- Requires-Dist: pyautogen[mistral]==0.8.6; extra == 'ag2-extras'
63
- Requires-Dist: pyautogen[neo4j]==0.8.6; extra == 'ag2-extras'
64
- Requires-Dist: pyautogen[ollama]==0.8.6; extra == 'ag2-extras'
65
- Requires-Dist: pyautogen[together]==0.8.6; extra == 'ag2-extras'
66
- Requires-Dist: pyautogen[websurfer]==0.8.6; extra == 'ag2-extras'
61
+ Requires-Dist: psycopg[binary]>=3.2.6; (sys_platform != 'win32') and extra == 'ag2-extras'
62
+ Requires-Dist: pyautogen[anthropic]==0.8.7; extra == 'ag2-extras'
63
+ Requires-Dist: pyautogen[bedrock]==0.8.7; extra == 'ag2-extras'
64
+ Requires-Dist: pyautogen[cohere]==0.8.7; extra == 'ag2-extras'
65
+ Requires-Dist: pyautogen[gemini]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
66
+ Requires-Dist: pyautogen[gemini]==0.8.7; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
67
+ Requires-Dist: pyautogen[groq]==0.8.7; extra == 'ag2-extras'
68
+ Requires-Dist: pyautogen[interop-crewai]==0.8.7; extra == 'ag2-extras'
69
+ Requires-Dist: pyautogen[interop-langchain]==0.8.7; extra == 'ag2-extras'
70
+ Requires-Dist: pyautogen[lmm]==0.8.7; extra == 'ag2-extras'
71
+ Requires-Dist: pyautogen[mistral]==0.8.7; extra == 'ag2-extras'
72
+ Requires-Dist: pyautogen[neo4j]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
73
+ Requires-Dist: pyautogen[neo4j]==0.8.7; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
74
+ Requires-Dist: pyautogen[ollama]==0.8.7; extra == 'ag2-extras'
75
+ Requires-Dist: pyautogen[together]==0.8.7; (sys_platform != 'win32') and extra == 'ag2-extras'
76
+ Requires-Dist: pyautogen[together]==0.8.7; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
77
+ Requires-Dist: pyautogen[websurfer]==0.8.7; extra == 'ag2-extras'
67
78
  Requires-Dist: pydantic-ai>=0.0.21; extra == 'ag2-extras'
68
79
  Requires-Dist: pymongo>=4.11; extra == 'ag2-extras'
69
80
  Requires-Dist: pypdf; extra == 'ag2-extras'
70
81
  Requires-Dist: pysqlite3-binary==0.5.4; (sys_platform == 'linux' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
71
- Requires-Dist: qdrant-client[fastembed]; extra == 'ag2-extras'
72
- Requires-Dist: sentence-transformers; extra == 'ag2-extras'
82
+ Requires-Dist: qdrant-client[fastembed]; (sys_platform != 'win32') and extra == 'ag2-extras'
83
+ Requires-Dist: qdrant-client[fastembed]; (sys_platform == 'win32' and platform_machine != 'arm64' and platform_machine != 'aarch64' and platform_machine != 'ARM64' and platform_machine != 'AARCH64') and extra == 'ag2-extras'
84
+ Requires-Dist: sentence-transformers; (sys_platform == 'linux') and extra == 'ag2-extras'
85
+ Requires-Dist: wikipedia-api<1.0,>=0.8.1; extra == 'ag2-extras'
73
86
  Provides-Extra: dev
74
87
  Requires-Dist: autoflake==2.3.1; extra == 'dev'
75
88
  Requires-Dist: bandit==1.8.3; extra == 'dev'
76
89
  Requires-Dist: black[jupyter]==25.1.0; extra == 'dev'
77
90
  Requires-Dist: flake8==7.2.0; extra == 'dev'
78
- Requires-Dist: isort==6.0.1; extra == 'dev'
91
+ Requires-Dist: hatchling==1.27.0; extra == 'dev'
92
+ Requires-Dist: jupyter-server==2.15.0; extra == 'dev'
93
+ Requires-Dist: jupyterlab>=4.3.0; extra == 'dev'
79
94
  Requires-Dist: mypy==1.15.0; extra == 'dev'
80
95
  Requires-Dist: pandas-stubs==2.2.3.250308; extra == 'dev'
81
96
  Requires-Dist: pre-commit==4.2.0; extra == 'dev'
82
97
  Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
83
98
  Requires-Dist: pylint==3.3.6; extra == 'dev'
84
99
  Requires-Dist: python-dotenv==1.1.0; extra == 'dev'
85
- Requires-Dist: ruff==0.11.5; extra == 'dev'
100
+ Requires-Dist: ruff==0.11.7; extra == 'dev'
86
101
  Requires-Dist: toml==0.10.2; (python_version <= '3.10') and extra == 'dev'
87
102
  Requires-Dist: types-pyyaml==6.0.12.20250402; extra == 'dev'
103
+ Requires-Dist: types-requests==2.32.0.20250328; extra == 'dev'
88
104
  Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
89
105
  Requires-Dist: yamllint==1.37.0; extra == 'dev'
90
106
  Provides-Extra: docs
91
107
  Requires-Dist: mdx-include==1.4.2; extra == 'docs'
92
108
  Requires-Dist: mdx-truly-sane-lists==1.3; extra == 'docs'
109
+ Requires-Dist: mkdocs-awesome-nav; extra == 'docs'
93
110
  Requires-Dist: mkdocs-jupyter==0.25.1; extra == 'docs'
94
111
  Requires-Dist: mkdocs-macros-plugin==1.3.7; extra == 'docs'
95
- Requires-Dist: mkdocs-material==9.6.11; extra == 'docs'
112
+ Requires-Dist: mkdocs-material==9.6.12; extra == 'docs'
96
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'
97
115
  Requires-Dist: mkdocs==1.6.1; extra == 'docs'
98
116
  Requires-Dist: mkdocstrings-python==1.16.10; extra == 'docs'
99
117
  Requires-Dist: mkdocstrings[crystal,python]==0.29.1; extra == 'docs'
100
118
  Provides-Extra: jupyter
119
+ Requires-Dist: jupyter-server==2.15.0; extra == 'jupyter'
101
120
  Requires-Dist: jupyterlab>=4.3.0; extra == 'jupyter'
102
- Requires-Dist: waldiez-jupyter==0.4.3; extra == 'jupyter'
121
+ Requires-Dist: waldiez-jupyter==0.4.5; extra == 'jupyter'
122
+ Provides-Extra: runner
123
+ Requires-Dist: waldiez-runner==0.4.5; (python_version >= '3.11') and extra == 'runner'
103
124
  Provides-Extra: studio
104
- Requires-Dist: waldiez-studio==0.4.3; extra == 'studio'
125
+ Requires-Dist: waldiez-studio==0.4.5; extra == 'studio'
105
126
  Provides-Extra: test
106
127
  Requires-Dist: pytest-asyncio==0.26.0; extra == 'test'
107
128
  Requires-Dist: pytest-cov==6.1.1; extra == 'test'
@@ -114,7 +135,7 @@ Description-Content-Type: text/markdown
114
135
 
115
136
  # Waldiez
116
137
 
117
- ![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)
118
139
 
119
140
  Translate a Waldiez flow:
120
141
 
@@ -130,16 +151,36 @@ To a python script or a jupyter notebook with the corresponding [ag2](https://gi
130
151
 
131
152
  ## Installation
132
153
 
154
+ ### Python
155
+
133
156
  On PyPI:
134
157
 
135
- ```bash
158
+ ```shell
136
159
  python -m pip install waldiez
137
160
  ```
138
161
 
139
162
  From the repository:
140
163
 
141
- ```bash
142
- 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
143
184
  ```
144
185
 
145
186
  ## Usage
@@ -147,7 +188,6 @@ python -m pip install git+https://github.com/waldiez/python.git
147
188
  ### UI Options
148
189
 
149
190
  - For creating-only (no exporting or running) waldiez flows, you can use the playground at <https://waldiez.github.io>.
150
- The repo for the js library is [here](https://github.com/waldiez/react).
151
191
  - There is also a jupyterlab extension [here](https://github.com/waldiez/jupyter)
152
192
  - You also can use the vscode extension:
153
193
  - [repo](https://github.com/waldiez/vscode)
@@ -250,6 +290,47 @@ runner.run(output_path=output_path)
250
290
  pip install --force --no-cache waldiez pyautogen
251
291
  ```
252
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
+
253
334
  ## License
254
335
 
255
- 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).