waldiez 0.1.14__py3-none-any.whl → 0.1.16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of waldiez might be problematic. Click here for more details.
- waldiez/_version.py +1 -1
- waldiez/conflict_checker.py +6 -3
- {waldiez-0.1.14.dist-info → waldiez-0.1.16.dist-info}/METADATA +6 -4
- {waldiez-0.1.14.dist-info → waldiez-0.1.16.dist-info}/RECORD +7 -7
- {waldiez-0.1.14.dist-info → waldiez-0.1.16.dist-info}/WHEEL +0 -0
- {waldiez-0.1.14.dist-info → waldiez-0.1.16.dist-info}/entry_points.txt +0 -0
- {waldiez-0.1.14.dist-info → waldiez-0.1.16.dist-info}/licenses/LICENSE +0 -0
waldiez/_version.py
CHANGED
waldiez/conflict_checker.py
CHANGED
|
@@ -12,10 +12,13 @@ def check_conflicts() -> None: # pragma: no cover
|
|
|
12
12
|
try:
|
|
13
13
|
version("autogen-agentchat")
|
|
14
14
|
print(
|
|
15
|
-
"Conflict detected: 'autogen-agentchat' is installed
|
|
15
|
+
"Conflict detected: 'autogen-agentchat' is installed "
|
|
16
|
+
"in the current environment, \n"
|
|
16
17
|
"which conflicts with 'ag2' / 'pyautogen'.\n"
|
|
17
|
-
"Please uninstall 'autogen-agentchat':
|
|
18
|
-
"
|
|
18
|
+
"Please uninstall 'autogen-agentchat': \n"
|
|
19
|
+
f"{sys.executable} -m pip uninstall -y autogen-agentchat \n"
|
|
20
|
+
"And install 'pyautogen' (and/or 'waldiez') again: \n"
|
|
21
|
+
f"{sys.executable} -m pip install --force pyautogen waldiez"
|
|
19
22
|
)
|
|
20
23
|
sys.exit(1)
|
|
21
24
|
except PackageNotFoundError:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: waldiez
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.16
|
|
4
4
|
Summary: waldiez
|
|
5
5
|
Project-URL: homepage, https://waldiez.github.io/waldiez/
|
|
6
6
|
Project-URL: repository, https://github.com/waldiez/waldiez.git
|
|
@@ -18,9 +18,9 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Requires-Python: <3.13,>=3.10
|
|
19
19
|
Requires-Dist: jupytext
|
|
20
20
|
Requires-Dist: pyautogen==0.5.0
|
|
21
|
+
Requires-Dist: pydantic>=2.0
|
|
21
22
|
Requires-Dist: typer<0.13,>=0.9
|
|
22
23
|
Provides-Extra: ag2-extras
|
|
23
|
-
Requires-Dist: fastembed==0.4.2; extra == 'ag2-extras'
|
|
24
24
|
Requires-Dist: pgvector>=0.3.6; extra == 'ag2-extras'
|
|
25
25
|
Requires-Dist: psycopg[binary]>=3.2.3; extra == 'ag2-extras'
|
|
26
26
|
Requires-Dist: pyautogen[anthropic]==0.5.0; extra == 'ag2-extras'
|
|
@@ -32,12 +32,12 @@ Requires-Dist: pyautogen[lmm]==0.5.0; extra == 'ag2-extras'
|
|
|
32
32
|
Requires-Dist: pyautogen[mistral]==0.5.0; extra == 'ag2-extras'
|
|
33
33
|
Requires-Dist: pyautogen[retrievechat-mongodb]==0.5.0; extra == 'ag2-extras'
|
|
34
34
|
Requires-Dist: pyautogen[retrievechat-pgvector]==0.5.0; extra == 'ag2-extras'
|
|
35
|
-
Requires-Dist: pyautogen[retrievechat-qdrant]==0.5.0; extra == 'ag2-extras'
|
|
35
|
+
Requires-Dist: pyautogen[retrievechat-qdrant]==0.5.0; (python_version < '3.13') and extra == 'ag2-extras'
|
|
36
36
|
Requires-Dist: pyautogen[retrievechat]==0.5.0; extra == 'ag2-extras'
|
|
37
37
|
Requires-Dist: pyautogen[together]==0.5.0; extra == 'ag2-extras'
|
|
38
38
|
Requires-Dist: pyautogen[websurfer]==0.5.0; extra == 'ag2-extras'
|
|
39
39
|
Requires-Dist: pymongo==4.10.1; extra == 'ag2-extras'
|
|
40
|
-
Requires-Dist: qdrant-client
|
|
40
|
+
Requires-Dist: qdrant-client[fastembed]; (python_version >= '3.13') and extra == 'ag2-extras'
|
|
41
41
|
Provides-Extra: dev
|
|
42
42
|
Requires-Dist: autoflake==2.3.1; extra == 'dev'
|
|
43
43
|
Requires-Dist: bandit==1.8.0; extra == 'dev'
|
|
@@ -50,7 +50,9 @@ Requires-Dist: pydocstyle==6.3.0; extra == 'dev'
|
|
|
50
50
|
Requires-Dist: pylint==3.3.2; extra == 'dev'
|
|
51
51
|
Requires-Dist: python-dotenv==1.0.1; extra == 'dev'
|
|
52
52
|
Requires-Dist: ruff==0.8.2; extra == 'dev'
|
|
53
|
+
Requires-Dist: toml; (python_version <= '3.10') and extra == 'dev'
|
|
53
54
|
Requires-Dist: types-pyyaml==6.0.12.20240917; extra == 'dev'
|
|
55
|
+
Requires-Dist: types-toml==0.10.8.20240310; extra == 'dev'
|
|
54
56
|
Requires-Dist: yamllint==1.35.1; extra == 'dev'
|
|
55
57
|
Provides-Extra: docs
|
|
56
58
|
Requires-Dist: mdx-include==1.4.2; extra == 'docs'
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
waldiez/__init__.py,sha256=ASGmxP3JcASIv89_tMYhYxvW0FlHK1jM0Nfb1hMN-z0,722
|
|
2
2
|
waldiez/__main__.py,sha256=mUQWu4CF03Jbbscvcfb_9EFTnIMliJJJmAuWf0sRRZU,110
|
|
3
|
-
waldiez/_version.py,sha256=
|
|
3
|
+
waldiez/_version.py,sha256=026DZ67bw4Uu2icgYJhg5EFn_m_nUhLAlWLEeeEs1J8,63
|
|
4
4
|
waldiez/cli.py,sha256=Ayp6Xu2HSBBFIouYh8cArjOjgXv5kbtZd_PYewcDklU,6347
|
|
5
|
-
waldiez/conflict_checker.py,sha256=
|
|
5
|
+
waldiez/conflict_checker.py,sha256=E-w0TfTivDAVpNvjd_NSBeaaFsWtWAyxKoSz0-g6x2U,880
|
|
6
6
|
waldiez/exporter.py,sha256=iKe-l_Me8NRWsXHIdBcrOrnLT9XIyp4iYi4HLuuj2jA,9342
|
|
7
7
|
waldiez/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
waldiez/runner.py,sha256=v4A4NHdSnh96TQ5Vx1vs8UrTsshc2oAwDZrEHmq4RkU,11537
|
|
@@ -85,8 +85,8 @@ waldiez/models/model/model_data.py,sha256=VLPb60rJeZEgVZCjjkQGiwTrKz7OddVLrXCrEu
|
|
|
85
85
|
waldiez/models/skill/__init__.py,sha256=rU88bajKOGMYoHFcE8MP0jW9H0MswbQmvz5wxS35BYE,169
|
|
86
86
|
waldiez/models/skill/skill.py,sha256=fhsAI413an2_d4DBIkf7dzEuWk6rGs2t4sl97a4dj20,3473
|
|
87
87
|
waldiez/models/skill/skill_data.py,sha256=RTWn8Od6w7g-nRIpsS29sqZ8sPm5dCPiK7-qXmU-KD4,815
|
|
88
|
-
waldiez-0.1.
|
|
89
|
-
waldiez-0.1.
|
|
90
|
-
waldiez-0.1.
|
|
91
|
-
waldiez-0.1.
|
|
92
|
-
waldiez-0.1.
|
|
88
|
+
waldiez-0.1.16.dist-info/METADATA,sha256=m-UWEzwMoMRPyEiwHDYugMJJ2VdQe_AmiKQ-EJMKZjE,10200
|
|
89
|
+
waldiez-0.1.16.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
90
|
+
waldiez-0.1.16.dist-info/entry_points.txt,sha256=9MQ8Y1rD19CU7UwjNPwoyTRpQsPs2QimjrtwTD0bD6k,44
|
|
91
|
+
waldiez-0.1.16.dist-info/licenses/LICENSE,sha256=VQEHM6WMQLRu1qaGl3GWsoOknDwro-69eGo4NLIJPIM,1064
|
|
92
|
+
waldiez-0.1.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|