agentevo-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.
- agentevo_sdk/__init__.py +67 -0
- agentevo_sdk/cli.py +810 -0
- agentevo_sdk/client.py +484 -0
- agentevo_sdk/conformance.py +315 -0
- agentevo_sdk/fixtures/claude-code.v1.json +425 -0
- agentevo_sdk/fixtures/codex.v1.json +564 -0
- agentevo_sdk/fixtures/manifest.json +6 -0
- agentevo_sdk/schemas/v1/entitlements.json +23 -0
- agentevo_sdk/schemas/v1/error.json +13 -0
- agentevo_sdk/schemas/v1/event.json +56 -0
- agentevo_sdk/schemas/v1/events-batch-response.json +12 -0
- agentevo_sdk/schemas/v1/usage.json +29 -0
- agentevo_sdk/transport.py +44 -0
- agentevo_sdk/types.py +352 -0
- agentevo_sdk-0.1.0.dist-info/METADATA +237 -0
- agentevo_sdk-0.1.0.dist-info/RECORD +19 -0
- agentevo_sdk-0.1.0.dist-info/WHEEL +4 -0
- agentevo_sdk-0.1.0.dist-info/entry_points.txt +2 -0
- agentevo_sdk-0.1.0.dist-info/licenses/LICENSE +202 -0
agentevo_sdk/__init__.py
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""Agentevo client SDK, CLI, and agent adapters."""
|
|
2
|
+
|
|
3
|
+
from agentevo_sdk.client import (
|
|
4
|
+
DEFAULT_POLL_INTERVAL_SECONDS as DEFAULT_POLL_INTERVAL_SECONDS,
|
|
5
|
+
DEFAULT_TIMEOUT_SECONDS as DEFAULT_TIMEOUT_SECONDS,
|
|
6
|
+
DEFAULT_WAIT_TIMEOUT_SECONDS as DEFAULT_WAIT_TIMEOUT_SECONDS,
|
|
7
|
+
Client as Client,
|
|
8
|
+
)
|
|
9
|
+
from agentevo_sdk.conformance import (
|
|
10
|
+
FIXTURE_VERSION as FIXTURE_VERSION,
|
|
11
|
+
MANIFEST_NAME as MANIFEST_NAME,
|
|
12
|
+
ConformanceError as ConformanceError,
|
|
13
|
+
ConformanceReport as ConformanceReport,
|
|
14
|
+
assert_conformant as assert_conformant,
|
|
15
|
+
check_adapter as check_adapter,
|
|
16
|
+
fixture_bytes as fixture_bytes,
|
|
17
|
+
verify_manifest as verify_manifest,
|
|
18
|
+
)
|
|
19
|
+
from agentevo_sdk.types import (
|
|
20
|
+
IDEMPOTENCY_KEY_HEADER as IDEMPOTENCY_KEY_HEADER,
|
|
21
|
+
REQUEST_ID_HEADER as REQUEST_ID_HEADER,
|
|
22
|
+
RETRY_AFTER_HEADER as RETRY_AFTER_HEADER,
|
|
23
|
+
TERMINAL_JOB_STATES as TERMINAL_JOB_STATES,
|
|
24
|
+
AuditPage as AuditPage,
|
|
25
|
+
Entitlements as Entitlements,
|
|
26
|
+
EventBatchReceipt as EventBatchReceipt,
|
|
27
|
+
Job as Job,
|
|
28
|
+
ManagedVersion as ManagedVersion,
|
|
29
|
+
RecallHit as RecallHit,
|
|
30
|
+
RecallResult as RecallResult,
|
|
31
|
+
RegisteredDevice as RegisteredDevice,
|
|
32
|
+
RevokeResult as RevokeResult,
|
|
33
|
+
SDKError as SDKError,
|
|
34
|
+
SyncConsent as SyncConsent,
|
|
35
|
+
Usage as Usage,
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
__all__: list[str] = [
|
|
39
|
+
"DEFAULT_POLL_INTERVAL_SECONDS",
|
|
40
|
+
"DEFAULT_TIMEOUT_SECONDS",
|
|
41
|
+
"DEFAULT_WAIT_TIMEOUT_SECONDS",
|
|
42
|
+
"FIXTURE_VERSION",
|
|
43
|
+
"IDEMPOTENCY_KEY_HEADER",
|
|
44
|
+
"MANIFEST_NAME",
|
|
45
|
+
"REQUEST_ID_HEADER",
|
|
46
|
+
"RETRY_AFTER_HEADER",
|
|
47
|
+
"TERMINAL_JOB_STATES",
|
|
48
|
+
"AuditPage",
|
|
49
|
+
"Client",
|
|
50
|
+
"ConformanceError",
|
|
51
|
+
"ConformanceReport",
|
|
52
|
+
"Entitlements",
|
|
53
|
+
"EventBatchReceipt",
|
|
54
|
+
"Job",
|
|
55
|
+
"ManagedVersion",
|
|
56
|
+
"RecallHit",
|
|
57
|
+
"RecallResult",
|
|
58
|
+
"RegisteredDevice",
|
|
59
|
+
"RevokeResult",
|
|
60
|
+
"SDKError",
|
|
61
|
+
"SyncConsent",
|
|
62
|
+
"Usage",
|
|
63
|
+
"assert_conformant",
|
|
64
|
+
"check_adapter",
|
|
65
|
+
"fixture_bytes",
|
|
66
|
+
"verify_manifest",
|
|
67
|
+
]
|