agent-lab-sdk 0.1.4__py3-none-any.whl → 0.1.6__py3-none-any.whl

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

Potentially problematic release.


This version of agent-lab-sdk might be problematic. Click here for more details.

@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: agent-lab-sdk
3
+ Version: 0.1.6
4
+ Summary: SDK для работы с Agent Lab
5
+ Author-email: Andrew Ohurtsov <andermirik@yandex.com>
6
+ License: Proprietary and Confidential — All Rights Reserved
7
+ Keywords: agent,lab,sdk
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Topic :: Software Development :: Libraries
11
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: License :: Other/Proprietary License
17
+ Classifier: Operating System :: OS Independent
18
+ Requires-Python: <4.0,>=3.11
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: requests
22
+ Requires-Dist: langgraph~=0.4.1
23
+ Requires-Dist: langchain_gigachat
24
+ Requires-Dist: prometheus-client
25
+ Dynamic: license-file
26
+
27
+ # Agent Lab SDK
28
+
29
+ Набор утилит и обёрток для работы с LLM, AGW и метриками в проектах Agent Lab.
30
+
31
+ ---
32
+
33
+ 1. Установка twine
34
+
35
+ ```
36
+ pip install --upgrade build twine
37
+ ```
38
+
39
+ 2. Собрать и загрузить в pypi
40
+
41
+ перед обновлением сборки нужно не забыть поменять версию в pyproject.toml
42
+ ```
43
+ python -m build && python -m twine upload dist/*
44
+ ```
45
+
46
+ 3. Ссылка на проект pypi
47
+
48
+ > https://pypi.org/project/agent-lab-sdk/
49
+
50
+ 4. установка локально
51
+ ```
52
+ pip install -e .
53
+ ```
54
+
55
+ 5. установка из интернета
56
+ ```
57
+ pip install agent-lab-sdk
58
+ ```
59
+
60
+ # Примеры использования
61
+
62
+ TBD
@@ -10,8 +10,8 @@ agent_lab_sdk/metrics/__init__.py,sha256=G4VSlzKwupPMM4c6vZaF1rnd0KusKarezDMjli9
10
10
  agent_lab_sdk/metrics/metrics.py,sha256=2e0c7BanThUNtCxpS6BUlAIDoLSidQsuaaBP5EB48Yo,3432
11
11
  agent_lab_sdk/storage/__init__.py,sha256=ik1_v1DMTwehvcAEXIYxuvLuCjJCa3y5qAuJqoQpuSA,81
12
12
  agent_lab_sdk/storage/storage.py,sha256=ELpt7GRwFD-aWa6ctinfA_QwcvzWLvKS0Wz8FlxVqAs,2075
13
- agent_lab_sdk-0.1.4.dist-info/licenses/LICENSE,sha256=_TRXHkF3S9ilWBPdZcHLI_S-PRjK0L_SeOb2pcPAdV4,417
14
- agent_lab_sdk-0.1.4.dist-info/METADATA,sha256=cfGy-8cVIcRC7IhJKxUCb27nPC5vnOBuSwTpTKmetcA,884
15
- agent_lab_sdk-0.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
- agent_lab_sdk-0.1.4.dist-info/top_level.txt,sha256=E1efqkJ89KNmPBWdLzdMHeVtH0dYyCo4fhnSb81_15I,14
17
- agent_lab_sdk-0.1.4.dist-info/RECORD,,
13
+ agent_lab_sdk-0.1.6.dist-info/licenses/LICENSE,sha256=_TRXHkF3S9ilWBPdZcHLI_S-PRjK0L_SeOb2pcPAdV4,417
14
+ agent_lab_sdk-0.1.6.dist-info/METADATA,sha256=mcZCe5KIhVpcuJ3HKByWSR2KEc8JC_3CyqwGvbWQtaE,1723
15
+ agent_lab_sdk-0.1.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
+ agent_lab_sdk-0.1.6.dist-info/top_level.txt,sha256=E1efqkJ89KNmPBWdLzdMHeVtH0dYyCo4fhnSb81_15I,14
17
+ agent_lab_sdk-0.1.6.dist-info/RECORD,,
@@ -1,23 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: agent-lab-sdk
3
- Version: 0.1.4
4
- Summary: SDK для работы с Agent Lab
5
- Author-email: Andrew Ohurtsov <andermirik@yandex.com>
6
- License: Proprietary and Confidential — All Rights Reserved
7
- Keywords: agent,lab,sdk
8
- Classifier: Development Status :: 4 - Beta
9
- Classifier: Intended Audience :: Developers
10
- Classifier: Topic :: Software Development :: Libraries
11
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.12
14
- Classifier: License :: Other/Proprietary License
15
- Classifier: Operating System :: OS Independent
16
- Requires-Python: >=3.11
17
- Description-Content-Type: text/markdown
18
- License-File: LICENSE
19
- Requires-Dist: requests
20
- Requires-Dist: langgraph~=0.4.1
21
- Requires-Dist: langchain_gigachat
22
- Requires-Dist: prometheus-client
23
- Dynamic: license-file