agent-lab-sdk 0.1.16__tar.gz → 0.1.17__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 agent-lab-sdk might be problematic. Click here for more details.
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/PKG-INFO +2 -2
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/llm/gigachat_token_manager.py +4 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk.egg-info/PKG-INFO +2 -2
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk.egg-info/requires.txt +1 -1
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/pyproject.toml +2 -2
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/LICENSE +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/README.md +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/__init__.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/langgraph/checkpoint/__init__.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/langgraph/checkpoint/agw_saver.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/llm/__init__.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/llm/agw_token_manager.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/llm/llm.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/llm/throttled.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/metrics/__init__.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/metrics/metrics.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/schema/__init__.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/schema/input_types.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/schema/log_message.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/storage/__init__.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/storage/storage.py +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk.egg-info/SOURCES.txt +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk.egg-info/dependency_links.txt +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk.egg-info/top_level.txt +0 -0
- {agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-lab-sdk
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.17
|
|
4
4
|
Summary: SDK для работы с Agent Lab
|
|
5
5
|
Author-email: Andrew Ohurtsov <andermirik@yandex.com>
|
|
6
6
|
License: Proprietary and Confidential — All Rights Reserved
|
|
@@ -19,7 +19,7 @@ Requires-Python: <4.0,>=3.11
|
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: requests
|
|
22
|
-
Requires-Dist: langgraph
|
|
22
|
+
Requires-Dist: langgraph
|
|
23
23
|
Requires-Dist: langchain_gigachat
|
|
24
24
|
Requires-Dist: prometheus-client
|
|
25
25
|
Requires-Dist: langchain
|
|
@@ -29,6 +29,10 @@ BACKOFF_MAX = 5
|
|
|
29
29
|
# Случайный порог обновления токена: от 0 до 300 секунд (5 минут)
|
|
30
30
|
REFRESH_WINDOW_MAX = 300
|
|
31
31
|
|
|
32
|
+
#1. поддержка переменных GIGACHAT_USER, GIGACHAT_PASSWORD => ?
|
|
33
|
+
#2. поддержка переменной GIGACHAT_AUTH_URL
|
|
34
|
+
#3. скоп не требуется при авторизации по токену advanced
|
|
35
|
+
|
|
32
36
|
class GigaChatTokenManager:
|
|
33
37
|
# Лок для синхронизации между потоками в одном процессе
|
|
34
38
|
_thread_lock = threading.Lock()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-lab-sdk
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.17
|
|
4
4
|
Summary: SDK для работы с Agent Lab
|
|
5
5
|
Author-email: Andrew Ohurtsov <andermirik@yandex.com>
|
|
6
6
|
License: Proprietary and Confidential — All Rights Reserved
|
|
@@ -19,7 +19,7 @@ Requires-Python: <4.0,>=3.11
|
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: requests
|
|
22
|
-
Requires-Dist: langgraph
|
|
22
|
+
Requires-Dist: langgraph
|
|
23
23
|
Requires-Dist: langchain_gigachat
|
|
24
24
|
Requires-Dist: prometheus-client
|
|
25
25
|
Requires-Dist: langchain
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agent-lab-sdk"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.17"
|
|
8
8
|
description = "SDK для работы с Agent Lab"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "Proprietary and Confidential — All Rights Reserved" }
|
|
@@ -13,7 +13,7 @@ authors = [
|
|
|
13
13
|
]
|
|
14
14
|
requires-python = ">=3.11,<4.0"
|
|
15
15
|
dependencies = [
|
|
16
|
-
"requests", "langgraph
|
|
16
|
+
"requests", "langgraph", "langchain_gigachat", "prometheus-client", "langchain", "httpx~=0.27.2", "orjson>=3.9.7"
|
|
17
17
|
]
|
|
18
18
|
keywords = ["agent", "lab", "sdk"]
|
|
19
19
|
classifiers = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/langgraph/checkpoint/__init__.py
RENAMED
|
File without changes
|
{agent_lab_sdk-0.1.16 → agent_lab_sdk-0.1.17}/agent_lab_sdk/langgraph/checkpoint/agw_saver.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|