agentex-sdk 0.1.0a6__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.
- agentex/__init__.py +103 -0
- agentex/_base_client.py +1992 -0
- agentex/_client.py +506 -0
- agentex/_compat.py +219 -0
- agentex/_constants.py +14 -0
- agentex/_exceptions.py +108 -0
- agentex/_files.py +123 -0
- agentex/_models.py +829 -0
- agentex/_qs.py +150 -0
- agentex/_resource.py +43 -0
- agentex/_response.py +830 -0
- agentex/_streaming.py +333 -0
- agentex/_types.py +219 -0
- agentex/_utils/__init__.py +57 -0
- agentex/_utils/_logs.py +25 -0
- agentex/_utils/_proxy.py +65 -0
- agentex/_utils/_reflection.py +42 -0
- agentex/_utils/_resources_proxy.py +24 -0
- agentex/_utils/_streams.py +12 -0
- agentex/_utils/_sync.py +86 -0
- agentex/_utils/_transform.py +447 -0
- agentex/_utils/_typing.py +151 -0
- agentex/_utils/_utils.py +422 -0
- agentex/_version.py +4 -0
- agentex/lib/.keep +4 -0
- agentex/lib/__init__.py +0 -0
- agentex/lib/adk/__init__.py +41 -0
- agentex/lib/adk/_modules/__init__.py +0 -0
- agentex/lib/adk/_modules/acp.py +247 -0
- agentex/lib/adk/_modules/agent_task_tracker.py +176 -0
- agentex/lib/adk/_modules/agents.py +77 -0
- agentex/lib/adk/_modules/events.py +141 -0
- agentex/lib/adk/_modules/messages.py +285 -0
- agentex/lib/adk/_modules/state.py +291 -0
- agentex/lib/adk/_modules/streaming.py +75 -0
- agentex/lib/adk/_modules/tasks.py +124 -0
- agentex/lib/adk/_modules/tracing.py +194 -0
- agentex/lib/adk/providers/__init__.py +9 -0
- agentex/lib/adk/providers/_modules/__init__.py +0 -0
- agentex/lib/adk/providers/_modules/litellm.py +232 -0
- agentex/lib/adk/providers/_modules/openai.py +416 -0
- agentex/lib/adk/providers/_modules/sgp.py +85 -0
- agentex/lib/adk/utils/__init__.py +5 -0
- agentex/lib/adk/utils/_modules/__init__.py +0 -0
- agentex/lib/adk/utils/_modules/templating.py +94 -0
- agentex/lib/cli/__init__.py +0 -0
- agentex/lib/cli/commands/__init__.py +0 -0
- agentex/lib/cli/commands/agents.py +328 -0
- agentex/lib/cli/commands/init.py +227 -0
- agentex/lib/cli/commands/main.py +33 -0
- agentex/lib/cli/commands/secrets.py +169 -0
- agentex/lib/cli/commands/tasks.py +118 -0
- agentex/lib/cli/commands/uv.py +133 -0
- agentex/lib/cli/handlers/__init__.py +0 -0
- agentex/lib/cli/handlers/agent_handlers.py +160 -0
- agentex/lib/cli/handlers/cleanup_handlers.py +186 -0
- agentex/lib/cli/handlers/deploy_handlers.py +351 -0
- agentex/lib/cli/handlers/run_handlers.py +452 -0
- agentex/lib/cli/handlers/secret_handlers.py +670 -0
- agentex/lib/cli/templates/default/.dockerignore.j2 +43 -0
- agentex/lib/cli/templates/default/Dockerfile-uv.j2 +42 -0
- agentex/lib/cli/templates/default/Dockerfile.j2 +42 -0
- agentex/lib/cli/templates/default/README.md.j2 +193 -0
- agentex/lib/cli/templates/default/deploy/example.yaml.j2 +55 -0
- agentex/lib/cli/templates/default/manifest.yaml.j2 +116 -0
- agentex/lib/cli/templates/default/project/acp.py.j2 +29 -0
- agentex/lib/cli/templates/default/pyproject.toml.j2 +33 -0
- agentex/lib/cli/templates/default/requirements.txt.j2 +5 -0
- agentex/lib/cli/templates/deploy/Screenshot 2025-03-19 at 10.36.57/342/200/257AM.png +0 -0
- agentex/lib/cli/templates/deploy/example.yaml.j2 +55 -0
- agentex/lib/cli/templates/sync/.dockerignore.j2 +43 -0
- agentex/lib/cli/templates/sync/Dockerfile-uv.j2 +42 -0
- agentex/lib/cli/templates/sync/Dockerfile.j2 +42 -0
- agentex/lib/cli/templates/sync/README.md.j2 +293 -0
- agentex/lib/cli/templates/sync/deploy/example.yaml.j2 +55 -0
- agentex/lib/cli/templates/sync/manifest.yaml.j2 +116 -0
- agentex/lib/cli/templates/sync/project/acp.py.j2 +26 -0
- agentex/lib/cli/templates/sync/pyproject.toml.j2 +33 -0
- agentex/lib/cli/templates/sync/requirements.txt.j2 +5 -0
- agentex/lib/cli/templates/temporal/.dockerignore.j2 +43 -0
- agentex/lib/cli/templates/temporal/Dockerfile-uv.j2 +48 -0
- agentex/lib/cli/templates/temporal/Dockerfile.j2 +48 -0
- agentex/lib/cli/templates/temporal/README.md.j2 +316 -0
- agentex/lib/cli/templates/temporal/deploy/example.yaml.j2 +55 -0
- agentex/lib/cli/templates/temporal/manifest.yaml.j2 +137 -0
- agentex/lib/cli/templates/temporal/project/acp.py.j2 +30 -0
- agentex/lib/cli/templates/temporal/project/run_worker.py.j2 +33 -0
- agentex/lib/cli/templates/temporal/project/workflow.py.j2 +66 -0
- agentex/lib/cli/templates/temporal/pyproject.toml.j2 +34 -0
- agentex/lib/cli/templates/temporal/requirements.txt.j2 +5 -0
- agentex/lib/cli/utils/cli_utils.py +14 -0
- agentex/lib/cli/utils/credential_utils.py +103 -0
- agentex/lib/cli/utils/exceptions.py +6 -0
- agentex/lib/cli/utils/kubectl_utils.py +135 -0
- agentex/lib/cli/utils/kubernetes_secrets_utils.py +185 -0
- agentex/lib/core/__init__.py +0 -0
- agentex/lib/core/adapters/__init__.py +0 -0
- agentex/lib/core/adapters/llm/__init__.py +1 -0
- agentex/lib/core/adapters/llm/adapter_litellm.py +46 -0
- agentex/lib/core/adapters/llm/adapter_sgp.py +55 -0
- agentex/lib/core/adapters/llm/port.py +24 -0
- agentex/lib/core/adapters/streams/adapter_redis.py +128 -0
- agentex/lib/core/adapters/streams/port.py +50 -0
- agentex/lib/core/clients/__init__.py +1 -0
- agentex/lib/core/clients/temporal/__init__.py +0 -0
- agentex/lib/core/clients/temporal/temporal_client.py +181 -0
- agentex/lib/core/clients/temporal/types.py +47 -0
- agentex/lib/core/clients/temporal/utils.py +56 -0
- agentex/lib/core/services/__init__.py +0 -0
- agentex/lib/core/services/adk/__init__.py +0 -0
- agentex/lib/core/services/adk/acp/__init__.py +0 -0
- agentex/lib/core/services/adk/acp/acp.py +210 -0
- agentex/lib/core/services/adk/agent_task_tracker.py +85 -0
- agentex/lib/core/services/adk/agents.py +43 -0
- agentex/lib/core/services/adk/events.py +61 -0
- agentex/lib/core/services/adk/messages.py +164 -0
- agentex/lib/core/services/adk/providers/__init__.py +0 -0
- agentex/lib/core/services/adk/providers/litellm.py +256 -0
- agentex/lib/core/services/adk/providers/openai.py +723 -0
- agentex/lib/core/services/adk/providers/sgp.py +99 -0
- agentex/lib/core/services/adk/state.py +120 -0
- agentex/lib/core/services/adk/streaming.py +262 -0
- agentex/lib/core/services/adk/tasks.py +69 -0
- agentex/lib/core/services/adk/tracing.py +36 -0
- agentex/lib/core/services/adk/utils/__init__.py +0 -0
- agentex/lib/core/services/adk/utils/templating.py +58 -0
- agentex/lib/core/temporal/__init__.py +0 -0
- agentex/lib/core/temporal/activities/__init__.py +207 -0
- agentex/lib/core/temporal/activities/activity_helpers.py +37 -0
- agentex/lib/core/temporal/activities/adk/__init__.py +0 -0
- agentex/lib/core/temporal/activities/adk/acp/__init__.py +0 -0
- agentex/lib/core/temporal/activities/adk/acp/acp_activities.py +86 -0
- agentex/lib/core/temporal/activities/adk/agent_task_tracker_activities.py +76 -0
- agentex/lib/core/temporal/activities/adk/agents_activities.py +35 -0
- agentex/lib/core/temporal/activities/adk/events_activities.py +50 -0
- agentex/lib/core/temporal/activities/adk/messages_activities.py +94 -0
- agentex/lib/core/temporal/activities/adk/providers/__init__.py +0 -0
- agentex/lib/core/temporal/activities/adk/providers/litellm_activities.py +71 -0
- agentex/lib/core/temporal/activities/adk/providers/openai_activities.py +210 -0
- agentex/lib/core/temporal/activities/adk/providers/sgp_activities.py +42 -0
- agentex/lib/core/temporal/activities/adk/state_activities.py +85 -0
- agentex/lib/core/temporal/activities/adk/streaming_activities.py +33 -0
- agentex/lib/core/temporal/activities/adk/tasks_activities.py +48 -0
- agentex/lib/core/temporal/activities/adk/tracing_activities.py +55 -0
- agentex/lib/core/temporal/activities/adk/utils/__init__.py +0 -0
- agentex/lib/core/temporal/activities/adk/utils/templating_activities.py +41 -0
- agentex/lib/core/temporal/services/__init__.py +0 -0
- agentex/lib/core/temporal/services/temporal_task_service.py +69 -0
- agentex/lib/core/temporal/types/__init__.py +0 -0
- agentex/lib/core/temporal/types/workflow.py +5 -0
- agentex/lib/core/temporal/workers/__init__.py +0 -0
- agentex/lib/core/temporal/workers/worker.py +162 -0
- agentex/lib/core/temporal/workflows/workflow.py +26 -0
- agentex/lib/core/tracing/__init__.py +5 -0
- agentex/lib/core/tracing/processors/agentex_tracing_processor.py +117 -0
- agentex/lib/core/tracing/processors/sgp_tracing_processor.py +119 -0
- agentex/lib/core/tracing/processors/tracing_processor_interface.py +40 -0
- agentex/lib/core/tracing/trace.py +311 -0
- agentex/lib/core/tracing/tracer.py +70 -0
- agentex/lib/core/tracing/tracing_processor_manager.py +62 -0
- agentex/lib/environment_variables.py +87 -0
- agentex/lib/py.typed +0 -0
- agentex/lib/sdk/__init__.py +0 -0
- agentex/lib/sdk/config/__init__.py +0 -0
- agentex/lib/sdk/config/agent_config.py +61 -0
- agentex/lib/sdk/config/agent_manifest.py +219 -0
- agentex/lib/sdk/config/build_config.py +35 -0
- agentex/lib/sdk/config/deployment_config.py +117 -0
- agentex/lib/sdk/config/local_development_config.py +56 -0
- agentex/lib/sdk/config/project_config.py +103 -0
- agentex/lib/sdk/fastacp/__init__.py +3 -0
- agentex/lib/sdk/fastacp/base/base_acp_server.py +406 -0
- agentex/lib/sdk/fastacp/fastacp.py +74 -0
- agentex/lib/sdk/fastacp/impl/agentic_base_acp.py +72 -0
- agentex/lib/sdk/fastacp/impl/sync_acp.py +109 -0
- agentex/lib/sdk/fastacp/impl/temporal_acp.py +97 -0
- agentex/lib/sdk/fastacp/tests/README.md +297 -0
- agentex/lib/sdk/fastacp/tests/conftest.py +307 -0
- agentex/lib/sdk/fastacp/tests/pytest.ini +10 -0
- agentex/lib/sdk/fastacp/tests/run_tests.py +227 -0
- agentex/lib/sdk/fastacp/tests/test_base_acp_server.py +450 -0
- agentex/lib/sdk/fastacp/tests/test_fastacp_factory.py +344 -0
- agentex/lib/sdk/fastacp/tests/test_integration.py +477 -0
- agentex/lib/sdk/state_machine/__init__.py +6 -0
- agentex/lib/sdk/state_machine/noop_workflow.py +21 -0
- agentex/lib/sdk/state_machine/state.py +10 -0
- agentex/lib/sdk/state_machine/state_machine.py +189 -0
- agentex/lib/sdk/state_machine/state_workflow.py +16 -0
- agentex/lib/sdk/utils/__init__.py +0 -0
- agentex/lib/sdk/utils/messages.py +223 -0
- agentex/lib/types/__init__.py +0 -0
- agentex/lib/types/acp.py +94 -0
- agentex/lib/types/agent_configs.py +79 -0
- agentex/lib/types/agent_results.py +29 -0
- agentex/lib/types/credentials.py +34 -0
- agentex/lib/types/fastacp.py +61 -0
- agentex/lib/types/files.py +13 -0
- agentex/lib/types/json_rpc.py +49 -0
- agentex/lib/types/llm_messages.py +354 -0
- agentex/lib/types/task_message_updates.py +171 -0
- agentex/lib/types/tracing.py +34 -0
- agentex/lib/utils/__init__.py +0 -0
- agentex/lib/utils/completions.py +131 -0
- agentex/lib/utils/console.py +14 -0
- agentex/lib/utils/io.py +29 -0
- agentex/lib/utils/iterables.py +14 -0
- agentex/lib/utils/json_schema.py +23 -0
- agentex/lib/utils/logging.py +31 -0
- agentex/lib/utils/mcp.py +17 -0
- agentex/lib/utils/model_utils.py +46 -0
- agentex/lib/utils/parsing.py +15 -0
- agentex/lib/utils/regex.py +6 -0
- agentex/lib/utils/temporal.py +13 -0
- agentex/py.typed +0 -0
- agentex/resources/__init__.py +103 -0
- agentex/resources/agents.py +707 -0
- agentex/resources/events.py +294 -0
- agentex/resources/messages/__init__.py +33 -0
- agentex/resources/messages/batch.py +271 -0
- agentex/resources/messages/messages.py +492 -0
- agentex/resources/spans.py +557 -0
- agentex/resources/states.py +544 -0
- agentex/resources/tasks.py +615 -0
- agentex/resources/tracker.py +384 -0
- agentex/types/__init__.py +56 -0
- agentex/types/acp_type.py +7 -0
- agentex/types/agent.py +29 -0
- agentex/types/agent_list_params.py +13 -0
- agentex/types/agent_list_response.py +10 -0
- agentex/types/agent_rpc_by_name_params.py +21 -0
- agentex/types/agent_rpc_params.py +51 -0
- agentex/types/agent_rpc_params1.py +21 -0
- agentex/types/agent_rpc_response.py +20 -0
- agentex/types/agent_rpc_result.py +90 -0
- agentex/types/agent_task_tracker.py +34 -0
- agentex/types/data_content.py +30 -0
- agentex/types/data_content_param.py +31 -0
- agentex/types/data_delta.py +14 -0
- agentex/types/event.py +29 -0
- agentex/types/event_list_params.py +22 -0
- agentex/types/event_list_response.py +10 -0
- agentex/types/message_author.py +7 -0
- agentex/types/message_create_params.py +18 -0
- agentex/types/message_list_params.py +14 -0
- agentex/types/message_list_response.py +10 -0
- agentex/types/message_style.py +7 -0
- agentex/types/message_update_params.py +18 -0
- agentex/types/messages/__init__.py +8 -0
- agentex/types/messages/batch_create_params.py +16 -0
- agentex/types/messages/batch_create_response.py +10 -0
- agentex/types/messages/batch_update_params.py +16 -0
- agentex/types/messages/batch_update_response.py +10 -0
- agentex/types/shared/__init__.py +3 -0
- agentex/types/shared/task_message_update.py +83 -0
- agentex/types/span.py +36 -0
- agentex/types/span_create_params.py +40 -0
- agentex/types/span_list_params.py +12 -0
- agentex/types/span_list_response.py +10 -0
- agentex/types/span_update_params.py +37 -0
- agentex/types/state.py +25 -0
- agentex/types/state_create_params.py +16 -0
- agentex/types/state_list_params.py +16 -0
- agentex/types/state_list_response.py +10 -0
- agentex/types/state_update_params.py +16 -0
- agentex/types/task.py +23 -0
- agentex/types/task_delete_by_name_response.py +8 -0
- agentex/types/task_delete_response.py +8 -0
- agentex/types/task_list_response.py +10 -0
- agentex/types/task_message.py +33 -0
- agentex/types/task_message_content.py +16 -0
- agentex/types/task_message_content_param.py +17 -0
- agentex/types/task_message_delta.py +16 -0
- agentex/types/text_content.py +53 -0
- agentex/types/text_content_param.py +54 -0
- agentex/types/text_delta.py +14 -0
- agentex/types/tool_request_content.py +36 -0
- agentex/types/tool_request_content_param.py +37 -0
- agentex/types/tool_request_delta.py +18 -0
- agentex/types/tool_response_content.py +36 -0
- agentex/types/tool_response_content_param.py +36 -0
- agentex/types/tool_response_delta.py +18 -0
- agentex/types/tracker_list_params.py +16 -0
- agentex/types/tracker_list_response.py +10 -0
- agentex/types/tracker_update_params.py +19 -0
- agentex_sdk-0.1.0a6.dist-info/METADATA +426 -0
- agentex_sdk-0.1.0a6.dist-info/RECORD +289 -0
- agentex_sdk-0.1.0a6.dist-info/WHEEL +4 -0
- agentex_sdk-0.1.0a6.dist-info/entry_points.txt +2 -0
- agentex_sdk-0.1.0a6.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,294 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
|
5
|
+
from typing import Optional
|
6
|
+
|
7
|
+
import httpx
|
8
|
+
|
9
|
+
from ..types import event_list_params
|
10
|
+
from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
11
|
+
from .._utils import maybe_transform, async_maybe_transform
|
12
|
+
from .._compat import cached_property
|
13
|
+
from .._resource import SyncAPIResource, AsyncAPIResource
|
14
|
+
from .._response import (
|
15
|
+
to_raw_response_wrapper,
|
16
|
+
to_streamed_response_wrapper,
|
17
|
+
async_to_raw_response_wrapper,
|
18
|
+
async_to_streamed_response_wrapper,
|
19
|
+
)
|
20
|
+
from ..types.event import Event
|
21
|
+
from .._base_client import make_request_options
|
22
|
+
from ..types.event_list_response import EventListResponse
|
23
|
+
|
24
|
+
__all__ = ["EventsResource", "AsyncEventsResource"]
|
25
|
+
|
26
|
+
|
27
|
+
class EventsResource(SyncAPIResource):
|
28
|
+
@cached_property
|
29
|
+
def with_raw_response(self) -> EventsResourceWithRawResponse:
|
30
|
+
"""
|
31
|
+
This property can be used as a prefix for any HTTP method call to return
|
32
|
+
the raw response object instead of the parsed content.
|
33
|
+
|
34
|
+
For more information, see https://www.github.com/scaleapi/agentex-python#accessing-raw-response-data-eg-headers
|
35
|
+
"""
|
36
|
+
return EventsResourceWithRawResponse(self)
|
37
|
+
|
38
|
+
@cached_property
|
39
|
+
def with_streaming_response(self) -> EventsResourceWithStreamingResponse:
|
40
|
+
"""
|
41
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
42
|
+
|
43
|
+
For more information, see https://www.github.com/scaleapi/agentex-python#with_streaming_response
|
44
|
+
"""
|
45
|
+
return EventsResourceWithStreamingResponse(self)
|
46
|
+
|
47
|
+
def retrieve(
|
48
|
+
self,
|
49
|
+
event_id: str,
|
50
|
+
*,
|
51
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
52
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
53
|
+
extra_headers: Headers | None = None,
|
54
|
+
extra_query: Query | None = None,
|
55
|
+
extra_body: Body | None = None,
|
56
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
57
|
+
) -> Event:
|
58
|
+
"""
|
59
|
+
Get Event
|
60
|
+
|
61
|
+
Args:
|
62
|
+
extra_headers: Send extra headers
|
63
|
+
|
64
|
+
extra_query: Add additional query parameters to the request
|
65
|
+
|
66
|
+
extra_body: Add additional JSON properties to the request
|
67
|
+
|
68
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
69
|
+
"""
|
70
|
+
if not event_id:
|
71
|
+
raise ValueError(f"Expected a non-empty value for `event_id` but received {event_id!r}")
|
72
|
+
return self._get(
|
73
|
+
f"/events/{event_id}",
|
74
|
+
options=make_request_options(
|
75
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
76
|
+
),
|
77
|
+
cast_to=Event,
|
78
|
+
)
|
79
|
+
|
80
|
+
def list(
|
81
|
+
self,
|
82
|
+
*,
|
83
|
+
agent_id: str,
|
84
|
+
task_id: str,
|
85
|
+
last_processed_event_id: Optional[str] | NotGiven = NOT_GIVEN,
|
86
|
+
limit: Optional[int] | NotGiven = NOT_GIVEN,
|
87
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
88
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
89
|
+
extra_headers: Headers | None = None,
|
90
|
+
extra_query: Query | None = None,
|
91
|
+
extra_body: Body | None = None,
|
92
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
93
|
+
) -> EventListResponse:
|
94
|
+
"""
|
95
|
+
List events for a specific task and agent.
|
96
|
+
|
97
|
+
Optionally filter for events after a specific sequence ID. Results are ordered
|
98
|
+
by sequence_id.
|
99
|
+
|
100
|
+
Args:
|
101
|
+
agent_id: The agent ID to filter events by
|
102
|
+
|
103
|
+
task_id: The task ID to filter events by
|
104
|
+
|
105
|
+
last_processed_event_id: Optional event ID to get events after this ID
|
106
|
+
|
107
|
+
limit: Optional limit on number of results
|
108
|
+
|
109
|
+
extra_headers: Send extra headers
|
110
|
+
|
111
|
+
extra_query: Add additional query parameters to the request
|
112
|
+
|
113
|
+
extra_body: Add additional JSON properties to the request
|
114
|
+
|
115
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
116
|
+
"""
|
117
|
+
return self._get(
|
118
|
+
"/events",
|
119
|
+
options=make_request_options(
|
120
|
+
extra_headers=extra_headers,
|
121
|
+
extra_query=extra_query,
|
122
|
+
extra_body=extra_body,
|
123
|
+
timeout=timeout,
|
124
|
+
query=maybe_transform(
|
125
|
+
{
|
126
|
+
"agent_id": agent_id,
|
127
|
+
"task_id": task_id,
|
128
|
+
"last_processed_event_id": last_processed_event_id,
|
129
|
+
"limit": limit,
|
130
|
+
},
|
131
|
+
event_list_params.EventListParams,
|
132
|
+
),
|
133
|
+
),
|
134
|
+
cast_to=EventListResponse,
|
135
|
+
)
|
136
|
+
|
137
|
+
|
138
|
+
class AsyncEventsResource(AsyncAPIResource):
|
139
|
+
@cached_property
|
140
|
+
def with_raw_response(self) -> AsyncEventsResourceWithRawResponse:
|
141
|
+
"""
|
142
|
+
This property can be used as a prefix for any HTTP method call to return
|
143
|
+
the raw response object instead of the parsed content.
|
144
|
+
|
145
|
+
For more information, see https://www.github.com/scaleapi/agentex-python#accessing-raw-response-data-eg-headers
|
146
|
+
"""
|
147
|
+
return AsyncEventsResourceWithRawResponse(self)
|
148
|
+
|
149
|
+
@cached_property
|
150
|
+
def with_streaming_response(self) -> AsyncEventsResourceWithStreamingResponse:
|
151
|
+
"""
|
152
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
153
|
+
|
154
|
+
For more information, see https://www.github.com/scaleapi/agentex-python#with_streaming_response
|
155
|
+
"""
|
156
|
+
return AsyncEventsResourceWithStreamingResponse(self)
|
157
|
+
|
158
|
+
async def retrieve(
|
159
|
+
self,
|
160
|
+
event_id: str,
|
161
|
+
*,
|
162
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
163
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
164
|
+
extra_headers: Headers | None = None,
|
165
|
+
extra_query: Query | None = None,
|
166
|
+
extra_body: Body | None = None,
|
167
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
168
|
+
) -> Event:
|
169
|
+
"""
|
170
|
+
Get Event
|
171
|
+
|
172
|
+
Args:
|
173
|
+
extra_headers: Send extra headers
|
174
|
+
|
175
|
+
extra_query: Add additional query parameters to the request
|
176
|
+
|
177
|
+
extra_body: Add additional JSON properties to the request
|
178
|
+
|
179
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
180
|
+
"""
|
181
|
+
if not event_id:
|
182
|
+
raise ValueError(f"Expected a non-empty value for `event_id` but received {event_id!r}")
|
183
|
+
return await self._get(
|
184
|
+
f"/events/{event_id}",
|
185
|
+
options=make_request_options(
|
186
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
187
|
+
),
|
188
|
+
cast_to=Event,
|
189
|
+
)
|
190
|
+
|
191
|
+
async def list(
|
192
|
+
self,
|
193
|
+
*,
|
194
|
+
agent_id: str,
|
195
|
+
task_id: str,
|
196
|
+
last_processed_event_id: Optional[str] | NotGiven = NOT_GIVEN,
|
197
|
+
limit: Optional[int] | NotGiven = NOT_GIVEN,
|
198
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
199
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
200
|
+
extra_headers: Headers | None = None,
|
201
|
+
extra_query: Query | None = None,
|
202
|
+
extra_body: Body | None = None,
|
203
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
204
|
+
) -> EventListResponse:
|
205
|
+
"""
|
206
|
+
List events for a specific task and agent.
|
207
|
+
|
208
|
+
Optionally filter for events after a specific sequence ID. Results are ordered
|
209
|
+
by sequence_id.
|
210
|
+
|
211
|
+
Args:
|
212
|
+
agent_id: The agent ID to filter events by
|
213
|
+
|
214
|
+
task_id: The task ID to filter events by
|
215
|
+
|
216
|
+
last_processed_event_id: Optional event ID to get events after this ID
|
217
|
+
|
218
|
+
limit: Optional limit on number of results
|
219
|
+
|
220
|
+
extra_headers: Send extra headers
|
221
|
+
|
222
|
+
extra_query: Add additional query parameters to the request
|
223
|
+
|
224
|
+
extra_body: Add additional JSON properties to the request
|
225
|
+
|
226
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
227
|
+
"""
|
228
|
+
return await self._get(
|
229
|
+
"/events",
|
230
|
+
options=make_request_options(
|
231
|
+
extra_headers=extra_headers,
|
232
|
+
extra_query=extra_query,
|
233
|
+
extra_body=extra_body,
|
234
|
+
timeout=timeout,
|
235
|
+
query=await async_maybe_transform(
|
236
|
+
{
|
237
|
+
"agent_id": agent_id,
|
238
|
+
"task_id": task_id,
|
239
|
+
"last_processed_event_id": last_processed_event_id,
|
240
|
+
"limit": limit,
|
241
|
+
},
|
242
|
+
event_list_params.EventListParams,
|
243
|
+
),
|
244
|
+
),
|
245
|
+
cast_to=EventListResponse,
|
246
|
+
)
|
247
|
+
|
248
|
+
|
249
|
+
class EventsResourceWithRawResponse:
|
250
|
+
def __init__(self, events: EventsResource) -> None:
|
251
|
+
self._events = events
|
252
|
+
|
253
|
+
self.retrieve = to_raw_response_wrapper(
|
254
|
+
events.retrieve,
|
255
|
+
)
|
256
|
+
self.list = to_raw_response_wrapper(
|
257
|
+
events.list,
|
258
|
+
)
|
259
|
+
|
260
|
+
|
261
|
+
class AsyncEventsResourceWithRawResponse:
|
262
|
+
def __init__(self, events: AsyncEventsResource) -> None:
|
263
|
+
self._events = events
|
264
|
+
|
265
|
+
self.retrieve = async_to_raw_response_wrapper(
|
266
|
+
events.retrieve,
|
267
|
+
)
|
268
|
+
self.list = async_to_raw_response_wrapper(
|
269
|
+
events.list,
|
270
|
+
)
|
271
|
+
|
272
|
+
|
273
|
+
class EventsResourceWithStreamingResponse:
|
274
|
+
def __init__(self, events: EventsResource) -> None:
|
275
|
+
self._events = events
|
276
|
+
|
277
|
+
self.retrieve = to_streamed_response_wrapper(
|
278
|
+
events.retrieve,
|
279
|
+
)
|
280
|
+
self.list = to_streamed_response_wrapper(
|
281
|
+
events.list,
|
282
|
+
)
|
283
|
+
|
284
|
+
|
285
|
+
class AsyncEventsResourceWithStreamingResponse:
|
286
|
+
def __init__(self, events: AsyncEventsResource) -> None:
|
287
|
+
self._events = events
|
288
|
+
|
289
|
+
self.retrieve = async_to_streamed_response_wrapper(
|
290
|
+
events.retrieve,
|
291
|
+
)
|
292
|
+
self.list = async_to_streamed_response_wrapper(
|
293
|
+
events.list,
|
294
|
+
)
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from .batch import (
|
4
|
+
BatchResource,
|
5
|
+
AsyncBatchResource,
|
6
|
+
BatchResourceWithRawResponse,
|
7
|
+
AsyncBatchResourceWithRawResponse,
|
8
|
+
BatchResourceWithStreamingResponse,
|
9
|
+
AsyncBatchResourceWithStreamingResponse,
|
10
|
+
)
|
11
|
+
from .messages import (
|
12
|
+
MessagesResource,
|
13
|
+
AsyncMessagesResource,
|
14
|
+
MessagesResourceWithRawResponse,
|
15
|
+
AsyncMessagesResourceWithRawResponse,
|
16
|
+
MessagesResourceWithStreamingResponse,
|
17
|
+
AsyncMessagesResourceWithStreamingResponse,
|
18
|
+
)
|
19
|
+
|
20
|
+
__all__ = [
|
21
|
+
"BatchResource",
|
22
|
+
"AsyncBatchResource",
|
23
|
+
"BatchResourceWithRawResponse",
|
24
|
+
"AsyncBatchResourceWithRawResponse",
|
25
|
+
"BatchResourceWithStreamingResponse",
|
26
|
+
"AsyncBatchResourceWithStreamingResponse",
|
27
|
+
"MessagesResource",
|
28
|
+
"AsyncMessagesResource",
|
29
|
+
"MessagesResourceWithRawResponse",
|
30
|
+
"AsyncMessagesResourceWithRawResponse",
|
31
|
+
"MessagesResourceWithStreamingResponse",
|
32
|
+
"AsyncMessagesResourceWithStreamingResponse",
|
33
|
+
]
|
@@ -0,0 +1,271 @@
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
|
5
|
+
from typing import Dict, Iterable
|
6
|
+
|
7
|
+
import httpx
|
8
|
+
|
9
|
+
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
10
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
11
|
+
from ..._compat import cached_property
|
12
|
+
from ..._resource import SyncAPIResource, AsyncAPIResource
|
13
|
+
from ..._response import (
|
14
|
+
to_raw_response_wrapper,
|
15
|
+
to_streamed_response_wrapper,
|
16
|
+
async_to_raw_response_wrapper,
|
17
|
+
async_to_streamed_response_wrapper,
|
18
|
+
)
|
19
|
+
from ..._base_client import make_request_options
|
20
|
+
from ...types.messages import batch_create_params, batch_update_params
|
21
|
+
from ...types.task_message_content_param import TaskMessageContentParam
|
22
|
+
from ...types.messages.batch_create_response import BatchCreateResponse
|
23
|
+
from ...types.messages.batch_update_response import BatchUpdateResponse
|
24
|
+
|
25
|
+
__all__ = ["BatchResource", "AsyncBatchResource"]
|
26
|
+
|
27
|
+
|
28
|
+
class BatchResource(SyncAPIResource):
|
29
|
+
@cached_property
|
30
|
+
def with_raw_response(self) -> BatchResourceWithRawResponse:
|
31
|
+
"""
|
32
|
+
This property can be used as a prefix for any HTTP method call to return
|
33
|
+
the raw response object instead of the parsed content.
|
34
|
+
|
35
|
+
For more information, see https://www.github.com/scaleapi/agentex-python#accessing-raw-response-data-eg-headers
|
36
|
+
"""
|
37
|
+
return BatchResourceWithRawResponse(self)
|
38
|
+
|
39
|
+
@cached_property
|
40
|
+
def with_streaming_response(self) -> BatchResourceWithStreamingResponse:
|
41
|
+
"""
|
42
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
43
|
+
|
44
|
+
For more information, see https://www.github.com/scaleapi/agentex-python#with_streaming_response
|
45
|
+
"""
|
46
|
+
return BatchResourceWithStreamingResponse(self)
|
47
|
+
|
48
|
+
def create(
|
49
|
+
self,
|
50
|
+
*,
|
51
|
+
contents: Iterable[TaskMessageContentParam],
|
52
|
+
task_id: str,
|
53
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
54
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
55
|
+
extra_headers: Headers | None = None,
|
56
|
+
extra_query: Query | None = None,
|
57
|
+
extra_body: Body | None = None,
|
58
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
59
|
+
) -> BatchCreateResponse:
|
60
|
+
"""
|
61
|
+
Batch Create Messages
|
62
|
+
|
63
|
+
Args:
|
64
|
+
extra_headers: Send extra headers
|
65
|
+
|
66
|
+
extra_query: Add additional query parameters to the request
|
67
|
+
|
68
|
+
extra_body: Add additional JSON properties to the request
|
69
|
+
|
70
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
71
|
+
"""
|
72
|
+
return self._post(
|
73
|
+
"/messages/batch",
|
74
|
+
body=maybe_transform(
|
75
|
+
{
|
76
|
+
"contents": contents,
|
77
|
+
"task_id": task_id,
|
78
|
+
},
|
79
|
+
batch_create_params.BatchCreateParams,
|
80
|
+
),
|
81
|
+
options=make_request_options(
|
82
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
83
|
+
),
|
84
|
+
cast_to=BatchCreateResponse,
|
85
|
+
)
|
86
|
+
|
87
|
+
def update(
|
88
|
+
self,
|
89
|
+
*,
|
90
|
+
task_id: str,
|
91
|
+
updates: Dict[str, TaskMessageContentParam],
|
92
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
93
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
94
|
+
extra_headers: Headers | None = None,
|
95
|
+
extra_query: Query | None = None,
|
96
|
+
extra_body: Body | None = None,
|
97
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
98
|
+
) -> BatchUpdateResponse:
|
99
|
+
"""
|
100
|
+
Batch Update Messages
|
101
|
+
|
102
|
+
Args:
|
103
|
+
extra_headers: Send extra headers
|
104
|
+
|
105
|
+
extra_query: Add additional query parameters to the request
|
106
|
+
|
107
|
+
extra_body: Add additional JSON properties to the request
|
108
|
+
|
109
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
110
|
+
"""
|
111
|
+
return self._put(
|
112
|
+
"/messages/batch",
|
113
|
+
body=maybe_transform(
|
114
|
+
{
|
115
|
+
"task_id": task_id,
|
116
|
+
"updates": updates,
|
117
|
+
},
|
118
|
+
batch_update_params.BatchUpdateParams,
|
119
|
+
),
|
120
|
+
options=make_request_options(
|
121
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
122
|
+
),
|
123
|
+
cast_to=BatchUpdateResponse,
|
124
|
+
)
|
125
|
+
|
126
|
+
|
127
|
+
class AsyncBatchResource(AsyncAPIResource):
|
128
|
+
@cached_property
|
129
|
+
def with_raw_response(self) -> AsyncBatchResourceWithRawResponse:
|
130
|
+
"""
|
131
|
+
This property can be used as a prefix for any HTTP method call to return
|
132
|
+
the raw response object instead of the parsed content.
|
133
|
+
|
134
|
+
For more information, see https://www.github.com/scaleapi/agentex-python#accessing-raw-response-data-eg-headers
|
135
|
+
"""
|
136
|
+
return AsyncBatchResourceWithRawResponse(self)
|
137
|
+
|
138
|
+
@cached_property
|
139
|
+
def with_streaming_response(self) -> AsyncBatchResourceWithStreamingResponse:
|
140
|
+
"""
|
141
|
+
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
142
|
+
|
143
|
+
For more information, see https://www.github.com/scaleapi/agentex-python#with_streaming_response
|
144
|
+
"""
|
145
|
+
return AsyncBatchResourceWithStreamingResponse(self)
|
146
|
+
|
147
|
+
async def create(
|
148
|
+
self,
|
149
|
+
*,
|
150
|
+
contents: Iterable[TaskMessageContentParam],
|
151
|
+
task_id: str,
|
152
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
153
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
154
|
+
extra_headers: Headers | None = None,
|
155
|
+
extra_query: Query | None = None,
|
156
|
+
extra_body: Body | None = None,
|
157
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
158
|
+
) -> BatchCreateResponse:
|
159
|
+
"""
|
160
|
+
Batch Create Messages
|
161
|
+
|
162
|
+
Args:
|
163
|
+
extra_headers: Send extra headers
|
164
|
+
|
165
|
+
extra_query: Add additional query parameters to the request
|
166
|
+
|
167
|
+
extra_body: Add additional JSON properties to the request
|
168
|
+
|
169
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
170
|
+
"""
|
171
|
+
return await self._post(
|
172
|
+
"/messages/batch",
|
173
|
+
body=await async_maybe_transform(
|
174
|
+
{
|
175
|
+
"contents": contents,
|
176
|
+
"task_id": task_id,
|
177
|
+
},
|
178
|
+
batch_create_params.BatchCreateParams,
|
179
|
+
),
|
180
|
+
options=make_request_options(
|
181
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
182
|
+
),
|
183
|
+
cast_to=BatchCreateResponse,
|
184
|
+
)
|
185
|
+
|
186
|
+
async def update(
|
187
|
+
self,
|
188
|
+
*,
|
189
|
+
task_id: str,
|
190
|
+
updates: Dict[str, TaskMessageContentParam],
|
191
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
192
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
193
|
+
extra_headers: Headers | None = None,
|
194
|
+
extra_query: Query | None = None,
|
195
|
+
extra_body: Body | None = None,
|
196
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
197
|
+
) -> BatchUpdateResponse:
|
198
|
+
"""
|
199
|
+
Batch Update Messages
|
200
|
+
|
201
|
+
Args:
|
202
|
+
extra_headers: Send extra headers
|
203
|
+
|
204
|
+
extra_query: Add additional query parameters to the request
|
205
|
+
|
206
|
+
extra_body: Add additional JSON properties to the request
|
207
|
+
|
208
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
209
|
+
"""
|
210
|
+
return await self._put(
|
211
|
+
"/messages/batch",
|
212
|
+
body=await async_maybe_transform(
|
213
|
+
{
|
214
|
+
"task_id": task_id,
|
215
|
+
"updates": updates,
|
216
|
+
},
|
217
|
+
batch_update_params.BatchUpdateParams,
|
218
|
+
),
|
219
|
+
options=make_request_options(
|
220
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
221
|
+
),
|
222
|
+
cast_to=BatchUpdateResponse,
|
223
|
+
)
|
224
|
+
|
225
|
+
|
226
|
+
class BatchResourceWithRawResponse:
|
227
|
+
def __init__(self, batch: BatchResource) -> None:
|
228
|
+
self._batch = batch
|
229
|
+
|
230
|
+
self.create = to_raw_response_wrapper(
|
231
|
+
batch.create,
|
232
|
+
)
|
233
|
+
self.update = to_raw_response_wrapper(
|
234
|
+
batch.update,
|
235
|
+
)
|
236
|
+
|
237
|
+
|
238
|
+
class AsyncBatchResourceWithRawResponse:
|
239
|
+
def __init__(self, batch: AsyncBatchResource) -> None:
|
240
|
+
self._batch = batch
|
241
|
+
|
242
|
+
self.create = async_to_raw_response_wrapper(
|
243
|
+
batch.create,
|
244
|
+
)
|
245
|
+
self.update = async_to_raw_response_wrapper(
|
246
|
+
batch.update,
|
247
|
+
)
|
248
|
+
|
249
|
+
|
250
|
+
class BatchResourceWithStreamingResponse:
|
251
|
+
def __init__(self, batch: BatchResource) -> None:
|
252
|
+
self._batch = batch
|
253
|
+
|
254
|
+
self.create = to_streamed_response_wrapper(
|
255
|
+
batch.create,
|
256
|
+
)
|
257
|
+
self.update = to_streamed_response_wrapper(
|
258
|
+
batch.update,
|
259
|
+
)
|
260
|
+
|
261
|
+
|
262
|
+
class AsyncBatchResourceWithStreamingResponse:
|
263
|
+
def __init__(self, batch: AsyncBatchResource) -> None:
|
264
|
+
self._batch = batch
|
265
|
+
|
266
|
+
self.create = async_to_streamed_response_wrapper(
|
267
|
+
batch.create,
|
268
|
+
)
|
269
|
+
self.update = async_to_streamed_response_wrapper(
|
270
|
+
batch.update,
|
271
|
+
)
|