struct-sdk 0.2.9__tar.gz → 0.2.10__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.
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/PKG-INFO +3 -3
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/pyproject.toml +5 -3
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/src/struct_sdk/core.py +1 -1
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/.gitignore +0 -0
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/LICENSE +0 -0
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/README.md +0 -0
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/src/struct_sdk/__init__.py +0 -0
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/src/struct_sdk/anthropic.py +0 -0
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/src/struct_sdk/claude_agent.py +0 -0
- {struct_sdk-0.2.9 → struct_sdk-0.2.10}/src/struct_sdk/langchain.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: struct-sdk
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.10
|
|
4
4
|
Summary: Struct agent observability SDK — auto-instruments AI agent frameworks with OpenTelemetry
|
|
5
5
|
Project-URL: Homepage, https://struct.ai
|
|
6
6
|
Project-URL: Documentation, https://struct.ai/docs
|
|
@@ -29,10 +29,10 @@ Requires-Dist: anthropic>=0.30.0; extra == 'anthropic'
|
|
|
29
29
|
Provides-Extra: claude-agent-sdk
|
|
30
30
|
Requires-Dist: claude-agent-sdk>=0.1.59; extra == 'claude-agent-sdk'
|
|
31
31
|
Provides-Extra: demo
|
|
32
|
-
Requires-Dist: langchain-anthropic>=
|
|
32
|
+
Requires-Dist: langchain-anthropic>=1.4.6; extra == 'demo'
|
|
33
33
|
Requires-Dist: langchain-core>=1.3.3; extra == 'demo'
|
|
34
34
|
Requires-Dist: langchain-openai>=0.2.0; extra == 'demo'
|
|
35
|
-
Requires-Dist: langchain>=1.3.
|
|
35
|
+
Requires-Dist: langchain>=1.3.9; extra == 'demo'
|
|
36
36
|
Requires-Dist: langgraph>=0.2.0; extra == 'demo'
|
|
37
37
|
Requires-Dist: python-dotenv>=1.0.0; extra == 'demo'
|
|
38
38
|
Provides-Extra: dev
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "struct-sdk"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.10"
|
|
8
8
|
description = "Struct agent observability SDK — auto-instruments AI agent frameworks with OpenTelemetry"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -40,10 +40,10 @@ anthropic = ["anthropic>=0.30.0"]
|
|
|
40
40
|
claude-agent-sdk = ["claude-agent-sdk>=0.1.59"]
|
|
41
41
|
langchain = ["langchain-core>=1.3.3"]
|
|
42
42
|
demo = [
|
|
43
|
-
"langchain>=1.3.
|
|
43
|
+
"langchain>=1.3.9",
|
|
44
44
|
"langchain-core>=1.3.3",
|
|
45
45
|
"langchain-openai>=0.2.0",
|
|
46
|
-
"langchain-anthropic>=
|
|
46
|
+
"langchain-anthropic>=1.4.6",
|
|
47
47
|
"langgraph>=0.2.0",
|
|
48
48
|
"python-dotenv>=1.0.0",
|
|
49
49
|
]
|
|
@@ -70,6 +70,8 @@ override-dependencies = [
|
|
|
70
70
|
"langchain-text-splitters>=1.1.2",
|
|
71
71
|
"python-multipart>=0.0.30",
|
|
72
72
|
"starlette>=1.3.1",
|
|
73
|
+
"langsmith>=0.8.18",
|
|
74
|
+
"pydantic-settings>=2.14.2",
|
|
73
75
|
]
|
|
74
76
|
|
|
75
77
|
[tool.pytest.ini_options]
|
|
@@ -392,7 +392,7 @@ class StructSDK:
|
|
|
392
392
|
return self._tracer_provider.get_tracer(name, _SDK_VERSION)
|
|
393
393
|
|
|
394
394
|
def get_logger(self, name: str = "struct-sdk") -> Any:
|
|
395
|
-
"""Get an OTel logger from our isolated provider
|
|
395
|
+
"""Get an OTel logger from our isolated provider."""
|
|
396
396
|
if self._logger_provider is None:
|
|
397
397
|
raise RuntimeError("Call struct.init() before using the SDK")
|
|
398
398
|
return self._logger_provider.get_logger(name)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|