struct-sdk 0.1.0__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.
struct_sdk/__init__.py ADDED
@@ -0,0 +1,14 @@
1
+ """Struct SDK — agent observability with zero-config instrumentation.
2
+
3
+ Usage:
4
+ from struct_sdk import struct
5
+ struct.init(ingest_key="pk-...")
6
+
7
+ # Then use your agent framework as normal — telemetry is captured automatically.
8
+ """
9
+
10
+ from struct_sdk.core import ContentCaptureMode, StructSDK
11
+
12
+ struct = StructSDK()
13
+
14
+ __all__ = ["struct", "ContentCaptureMode"]