agentex-sdk 0.2.4__py3-none-any.whl → 0.2.6__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/_base_client.py +4 -1
- agentex/_files.py +4 -4
- agentex/_version.py +1 -1
- agentex/lib/adk/_modules/acp.py +2 -2
- agentex/lib/adk/_modules/agent_task_tracker.py +2 -2
- agentex/lib/adk/_modules/agents.py +2 -2
- agentex/lib/adk/_modules/events.py +2 -2
- agentex/lib/adk/_modules/messages.py +2 -2
- agentex/lib/adk/_modules/state.py +2 -2
- agentex/lib/adk/_modules/streaming.py +2 -2
- agentex/lib/adk/_modules/tasks.py +2 -2
- agentex/lib/adk/_modules/tracing.py +2 -2
- agentex/lib/adk/providers/_modules/litellm.py +2 -1
- agentex/lib/adk/providers/_modules/openai.py +2 -1
- agentex/lib/adk/providers/_modules/sgp.py +2 -1
- agentex/lib/adk/utils/_modules/client.py +20 -35
- agentex/lib/adk/utils/_modules/templating.py +2 -1
- agentex/lib/cli/commands/agents.py +3 -3
- agentex/lib/cli/handlers/agent_handlers.py +1 -1
- agentex/lib/cli/handlers/cleanup_handlers.py +9 -15
- agentex/lib/cli/handlers/deploy_handlers.py +29 -5
- agentex/lib/cli/handlers/run_handlers.py +19 -93
- agentex/lib/cli/templates/sync/project/acp.py.j2 +15 -64
- agentex/lib/cli/utils/path_utils.py +143 -0
- agentex/lib/core/temporal/activities/__init__.py +2 -1
- agentex/lib/core/tracing/processors/agentex_tracing_processor.py +2 -1
- agentex/lib/environment_variables.py +5 -1
- agentex/lib/sdk/fastacp/base/base_acp_server.py +5 -4
- agentex/lib/sdk/fastacp/impl/agentic_base_acp.py +3 -1
- agentex/lib/types/converters.py +60 -0
- agentex/resources/agents.py +9 -8
- agentex/resources/messages/messages.py +4 -0
- agentex/resources/tasks.py +63 -14
- agentex/types/__init__.py +2 -2
- agentex/types/message_list_params.py +1 -0
- agentex/types/shared/__init__.py +3 -0
- agentex/types/shared/delete_response.py +11 -0
- agentex/types/task_list_params.py +14 -0
- {agentex_sdk-0.2.4.dist-info → agentex_sdk-0.2.6.dist-info}/METADATA +2 -2
- {agentex_sdk-0.2.4.dist-info → agentex_sdk-0.2.6.dist-info}/RECORD +43 -40
- agentex/types/task_delete_by_name_response.py +0 -8
- agentex/types/task_delete_response.py +0 -8
- {agentex_sdk-0.2.4.dist-info → agentex_sdk-0.2.6.dist-info}/WHEEL +0 -0
- {agentex_sdk-0.2.4.dist-info → agentex_sdk-0.2.6.dist-info}/entry_points.txt +0 -0
- {agentex_sdk-0.2.4.dist-info → agentex_sdk-0.2.6.dist-info}/licenses/LICENSE +0 -0
agentex/resources/tasks.py
CHANGED
@@ -2,9 +2,13 @@
|
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
4
|
|
5
|
+
from typing import Optional
|
6
|
+
|
5
7
|
import httpx
|
6
8
|
|
9
|
+
from ..types import task_list_params
|
7
10
|
from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
11
|
+
from .._utils import maybe_transform, async_maybe_transform
|
8
12
|
from .._compat import cached_property
|
9
13
|
from .._resource import SyncAPIResource, AsyncAPIResource
|
10
14
|
from .._response import (
|
@@ -17,8 +21,7 @@ from .._streaming import Stream, AsyncStream
|
|
17
21
|
from ..types.task import Task
|
18
22
|
from .._base_client import make_request_options
|
19
23
|
from ..types.task_list_response import TaskListResponse
|
20
|
-
from ..types.
|
21
|
-
from ..types.task_delete_by_name_response import TaskDeleteByNameResponse
|
24
|
+
from ..types.shared.delete_response import DeleteResponse
|
22
25
|
|
23
26
|
__all__ = ["TasksResource", "AsyncTasksResource"]
|
24
27
|
|
@@ -79,6 +82,8 @@ class TasksResource(SyncAPIResource):
|
|
79
82
|
def list(
|
80
83
|
self,
|
81
84
|
*,
|
85
|
+
agent_id: Optional[str] | NotGiven = NOT_GIVEN,
|
86
|
+
agent_name: Optional[str] | NotGiven = NOT_GIVEN,
|
82
87
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
83
88
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
84
89
|
extra_headers: Headers | None = None,
|
@@ -86,11 +91,32 @@ class TasksResource(SyncAPIResource):
|
|
86
91
|
extra_body: Body | None = None,
|
87
92
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
88
93
|
) -> TaskListResponse:
|
89
|
-
"""
|
94
|
+
"""
|
95
|
+
List all tasks.
|
96
|
+
|
97
|
+
Args:
|
98
|
+
extra_headers: Send extra headers
|
99
|
+
|
100
|
+
extra_query: Add additional query parameters to the request
|
101
|
+
|
102
|
+
extra_body: Add additional JSON properties to the request
|
103
|
+
|
104
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
105
|
+
"""
|
90
106
|
return self._get(
|
91
107
|
"/tasks",
|
92
108
|
options=make_request_options(
|
93
|
-
extra_headers=extra_headers,
|
109
|
+
extra_headers=extra_headers,
|
110
|
+
extra_query=extra_query,
|
111
|
+
extra_body=extra_body,
|
112
|
+
timeout=timeout,
|
113
|
+
query=maybe_transform(
|
114
|
+
{
|
115
|
+
"agent_id": agent_id,
|
116
|
+
"agent_name": agent_name,
|
117
|
+
},
|
118
|
+
task_list_params.TaskListParams,
|
119
|
+
),
|
94
120
|
),
|
95
121
|
cast_to=TaskListResponse,
|
96
122
|
)
|
@@ -105,7 +131,7 @@ class TasksResource(SyncAPIResource):
|
|
105
131
|
extra_query: Query | None = None,
|
106
132
|
extra_body: Body | None = None,
|
107
133
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
108
|
-
) ->
|
134
|
+
) -> DeleteResponse:
|
109
135
|
"""
|
110
136
|
Delete a task by its unique ID.
|
111
137
|
|
@@ -125,7 +151,7 @@ class TasksResource(SyncAPIResource):
|
|
125
151
|
options=make_request_options(
|
126
152
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
127
153
|
),
|
128
|
-
cast_to=
|
154
|
+
cast_to=DeleteResponse,
|
129
155
|
)
|
130
156
|
|
131
157
|
def delete_by_name(
|
@@ -138,7 +164,7 @@ class TasksResource(SyncAPIResource):
|
|
138
164
|
extra_query: Query | None = None,
|
139
165
|
extra_body: Body | None = None,
|
140
166
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
141
|
-
) ->
|
167
|
+
) -> DeleteResponse:
|
142
168
|
"""
|
143
169
|
Delete a task by its unique name.
|
144
170
|
|
@@ -158,7 +184,7 @@ class TasksResource(SyncAPIResource):
|
|
158
184
|
options=make_request_options(
|
159
185
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
160
186
|
),
|
161
|
-
cast_to=
|
187
|
+
cast_to=DeleteResponse,
|
162
188
|
)
|
163
189
|
|
164
190
|
def retrieve_by_name(
|
@@ -321,6 +347,8 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
321
347
|
async def list(
|
322
348
|
self,
|
323
349
|
*,
|
350
|
+
agent_id: Optional[str] | NotGiven = NOT_GIVEN,
|
351
|
+
agent_name: Optional[str] | NotGiven = NOT_GIVEN,
|
324
352
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
325
353
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
326
354
|
extra_headers: Headers | None = None,
|
@@ -328,11 +356,32 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
328
356
|
extra_body: Body | None = None,
|
329
357
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
330
358
|
) -> TaskListResponse:
|
331
|
-
"""
|
359
|
+
"""
|
360
|
+
List all tasks.
|
361
|
+
|
362
|
+
Args:
|
363
|
+
extra_headers: Send extra headers
|
364
|
+
|
365
|
+
extra_query: Add additional query parameters to the request
|
366
|
+
|
367
|
+
extra_body: Add additional JSON properties to the request
|
368
|
+
|
369
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
370
|
+
"""
|
332
371
|
return await self._get(
|
333
372
|
"/tasks",
|
334
373
|
options=make_request_options(
|
335
|
-
extra_headers=extra_headers,
|
374
|
+
extra_headers=extra_headers,
|
375
|
+
extra_query=extra_query,
|
376
|
+
extra_body=extra_body,
|
377
|
+
timeout=timeout,
|
378
|
+
query=await async_maybe_transform(
|
379
|
+
{
|
380
|
+
"agent_id": agent_id,
|
381
|
+
"agent_name": agent_name,
|
382
|
+
},
|
383
|
+
task_list_params.TaskListParams,
|
384
|
+
),
|
336
385
|
),
|
337
386
|
cast_to=TaskListResponse,
|
338
387
|
)
|
@@ -347,7 +396,7 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
347
396
|
extra_query: Query | None = None,
|
348
397
|
extra_body: Body | None = None,
|
349
398
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
350
|
-
) ->
|
399
|
+
) -> DeleteResponse:
|
351
400
|
"""
|
352
401
|
Delete a task by its unique ID.
|
353
402
|
|
@@ -367,7 +416,7 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
367
416
|
options=make_request_options(
|
368
417
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
369
418
|
),
|
370
|
-
cast_to=
|
419
|
+
cast_to=DeleteResponse,
|
371
420
|
)
|
372
421
|
|
373
422
|
async def delete_by_name(
|
@@ -380,7 +429,7 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
380
429
|
extra_query: Query | None = None,
|
381
430
|
extra_body: Body | None = None,
|
382
431
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
383
|
-
) ->
|
432
|
+
) -> DeleteResponse:
|
384
433
|
"""
|
385
434
|
Delete a task by its unique name.
|
386
435
|
|
@@ -400,7 +449,7 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
400
449
|
options=make_request_options(
|
401
450
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
402
451
|
),
|
403
|
-
cast_to=
|
452
|
+
cast_to=DeleteResponse,
|
404
453
|
)
|
405
454
|
|
406
455
|
async def retrieve_by_name(
|
agentex/types/__init__.py
CHANGED
@@ -7,6 +7,7 @@ from .task import Task as Task
|
|
7
7
|
from .agent import Agent as Agent
|
8
8
|
from .event import Event as Event
|
9
9
|
from .state import State as State
|
10
|
+
from .shared import DeleteResponse as DeleteResponse
|
10
11
|
from .acp_type import AcpType as AcpType
|
11
12
|
from .data_delta import DataDelta as DataDelta
|
12
13
|
from .text_delta import TextDelta as TextDelta
|
@@ -18,6 +19,7 @@ from .message_author import MessageAuthor as MessageAuthor
|
|
18
19
|
from .agent_rpc_params import AgentRpcParams as AgentRpcParams
|
19
20
|
from .agent_rpc_result import AgentRpcResult as AgentRpcResult
|
20
21
|
from .span_list_params import SpanListParams as SpanListParams
|
22
|
+
from .task_list_params import TaskListParams as TaskListParams
|
21
23
|
from .agent_list_params import AgentListParams as AgentListParams
|
22
24
|
from .event_list_params import EventListParams as EventListParams
|
23
25
|
from .state_list_params import StateListParams as StateListParams
|
@@ -40,7 +42,6 @@ from .state_update_params import StateUpdateParams as StateUpdateParams
|
|
40
42
|
from .task_message_update import TaskMessageUpdate as TaskMessageUpdate
|
41
43
|
from .tool_response_delta import ToolResponseDelta as ToolResponseDelta
|
42
44
|
from .tracker_list_params import TrackerListParams as TrackerListParams
|
43
|
-
from .task_delete_response import TaskDeleteResponse as TaskDeleteResponse
|
44
45
|
from .task_message_content import TaskMessageContent as TaskMessageContent
|
45
46
|
from .tool_request_content import ToolRequestContent as ToolRequestContent
|
46
47
|
from .message_create_params import MessageCreateParams as MessageCreateParams
|
@@ -53,4 +54,3 @@ from .agent_rpc_by_name_params import AgentRpcByNameParams as AgentRpcByNamePara
|
|
53
54
|
from .task_message_content_param import TaskMessageContentParam as TaskMessageContentParam
|
54
55
|
from .tool_request_content_param import ToolRequestContentParam as ToolRequestContentParam
|
55
56
|
from .tool_response_content_param import ToolResponseContentParam as ToolResponseContentParam
|
56
|
-
from .task_delete_by_name_response import TaskDeleteByNameResponse as TaskDeleteByNameResponse
|
@@ -0,0 +1,14 @@
|
|
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
|
+
from typing_extensions import TypedDict
|
7
|
+
|
8
|
+
__all__ = ["TaskListParams"]
|
9
|
+
|
10
|
+
|
11
|
+
class TaskListParams(TypedDict, total=False):
|
12
|
+
agent_id: Optional[str]
|
13
|
+
|
14
|
+
agent_name: Optional[str]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: agentex-sdk
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.6
|
4
4
|
Summary: The official Python library for the agentex API
|
5
5
|
Project-URL: Homepage, https://github.com/scaleapi/agentex-python
|
6
6
|
Project-URL: Repository, https://github.com/scaleapi/agentex-python
|
@@ -31,7 +31,7 @@ Requires-Dist: jsonschema<5,>=4.23.0
|
|
31
31
|
Requires-Dist: kubernetes<29.0.0,>=25.0.0
|
32
32
|
Requires-Dist: litellm<2,>=1.66.0
|
33
33
|
Requires-Dist: mcp[cli]>=1.4.1
|
34
|
-
Requires-Dist: openai-agents
|
34
|
+
Requires-Dist: openai-agents!=0.2.3,>=0.0.7
|
35
35
|
Requires-Dist: pydantic<3,>=2.0.0
|
36
36
|
Requires-Dist: pytest-asyncio>=1.0.0
|
37
37
|
Requires-Dist: pytest>=8.4.0
|
@@ -1,17 +1,17 @@
|
|
1
1
|
agentex/__init__.py,sha256=j0BX5IfIjYaWdXQC7P4bh1Ev2-0bJe4Uh7IbqG551ng,2667
|
2
|
-
agentex/_base_client.py,sha256=
|
2
|
+
agentex/_base_client.py,sha256=q63ijJoTHK1JW9gdjw-EH7seYy5rOJ3UlHSkZvGNt0M,67036
|
3
3
|
agentex/_client.py,sha256=Fae6qw42eIjFaENpQ5nrq5SyW1310UoHZGNrG-DSa_g,20493
|
4
4
|
agentex/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
5
5
|
agentex/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
6
6
|
agentex/_exceptions.py,sha256=B09aFjWFRSShb9BFJd-MNDblsGDyGk3w-vItYmjg_AI,3222
|
7
|
-
agentex/_files.py,sha256=
|
7
|
+
agentex/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
|
8
8
|
agentex/_models.py,sha256=KvjsMfb88XZlFUKVoOxr8OyDj47MhoH2OKqWNEbBhk4,30010
|
9
9
|
agentex/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
10
10
|
agentex/_resource.py,sha256=S1t7wmR5WUvoDIhZjo_x-E7uoTJBynJ3d8tPJMQYdjw,1106
|
11
11
|
agentex/_response.py,sha256=Tb9zazsnemO2rTxWtBjAD5WBqlhli5ZaXGbiKgdu5DE,28794
|
12
12
|
agentex/_streaming.py,sha256=FNGJExRCF-vTRUZHFKUfoAWFhDGOB3XbioVCF37Jr7E,10104
|
13
13
|
agentex/_types.py,sha256=KyKYySGIfHPod2hho1fPxssk5NuVn8C4MeMTtA-lg80,6198
|
14
|
-
agentex/_version.py,sha256=
|
14
|
+
agentex/_version.py,sha256=aolBlxCYy9VLUtx44zgLOoBoWwq2ENVlfc7ry58WRF8,159
|
15
15
|
agentex/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
agentex/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
17
17
|
agentex/_utils/_logs.py,sha256=LUjFPc3fweSChBUmjhQD8uYmwQAmFMNDuVFKfjYBQfM,777
|
@@ -25,41 +25,41 @@ agentex/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,460
|
|
25
25
|
agentex/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
26
26
|
agentex/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
27
27
|
agentex/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
|
-
agentex/lib/environment_variables.py,sha256=
|
28
|
+
agentex/lib/environment_variables.py,sha256=80YcUTKR5edoX2yNgajpLdS9dIe_RpHp68jlcbNR5ow,3175
|
29
29
|
agentex/lib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
30
|
agentex/lib/adk/__init__.py,sha256=-PpVfEvYr_HD7TnxUWU8RCW2OnxfwpPxTW97dKTnqvI,1082
|
31
31
|
agentex/lib/adk/_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
-
agentex/lib/adk/_modules/acp.py,sha256=
|
33
|
-
agentex/lib/adk/_modules/agent_task_tracker.py,sha256=
|
34
|
-
agentex/lib/adk/_modules/agents.py,sha256=
|
35
|
-
agentex/lib/adk/_modules/events.py,sha256=
|
36
|
-
agentex/lib/adk/_modules/messages.py,sha256=
|
37
|
-
agentex/lib/adk/_modules/state.py,sha256=
|
38
|
-
agentex/lib/adk/_modules/streaming.py,sha256=
|
39
|
-
agentex/lib/adk/_modules/tasks.py,sha256=
|
40
|
-
agentex/lib/adk/_modules/tracing.py,sha256
|
32
|
+
agentex/lib/adk/_modules/acp.py,sha256=0D9HLwBO3SX4eEsx1BY9G90jyvTABmaxdOzANg1rmzQ,9027
|
33
|
+
agentex/lib/adk/_modules/agent_task_tracker.py,sha256=fXMDs1zgAC6n8EmWTU5_trs79EGVBCEPxd5eBOZmdE0,7022
|
34
|
+
agentex/lib/adk/_modules/agents.py,sha256=VlT_PXnyb3Knh-nx1rfflD9N6gjp5O0_6Z_QL5SCThU,2788
|
35
|
+
agentex/lib/adk/_modules/events.py,sha256=RHQZ4ircC60zdm1chRzo3cdt7LNqDoJfPLNJXEz4BH0,5262
|
36
|
+
agentex/lib/adk/_modules/messages.py,sha256=1LxexTBif7HXltN3b1u6A5upXuXuq6ZkFAdIrbSv2zo,10636
|
37
|
+
agentex/lib/adk/_modules/state.py,sha256=z2Zh1JB3qJo-4BsVABnFZIeDWWKQDbcOw6itl0hU_E4,10730
|
38
|
+
agentex/lib/adk/_modules/streaming.py,sha256=lbRQBmySsx63wKiHeR5ueNW_6DJckCNStQ0wQynC4r4,3095
|
39
|
+
agentex/lib/adk/_modules/tasks.py,sha256=q3IBdnwVXrv9Ht7z4jkm8RWOpzU9n3VKgrX3FTNXSZ8,4220
|
40
|
+
agentex/lib/adk/_modules/tracing.py,sha256=A_kH332f_DFVfMftPHGEg3oi4RFcwDXohg7xtvWUuTY,7344
|
41
41
|
agentex/lib/adk/providers/__init__.py,sha256=KPWC8AYsl8lPgpFoRXlGwzozb-peKLAzV_DcTWXBsz4,306
|
42
42
|
agentex/lib/adk/providers/_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
|
-
agentex/lib/adk/providers/_modules/litellm.py,sha256=
|
44
|
-
agentex/lib/adk/providers/_modules/openai.py,sha256=
|
45
|
-
agentex/lib/adk/providers/_modules/sgp.py,sha256=
|
43
|
+
agentex/lib/adk/providers/_modules/litellm.py,sha256=11LxGsverxarRgxoP7Ni17GOCZwSlQlxHBz7ksToEkc,9486
|
44
|
+
agentex/lib/adk/providers/_modules/openai.py,sha256=QyjujK4JHiATB4xI9CiR67agcRhAPkNkcp4VqFsrqfk,17786
|
45
|
+
agentex/lib/adk/providers/_modules/sgp.py,sha256=QszUPyeGBODfI5maYvlzErD87PsMsX6vrfC7n65WNjE,3224
|
46
46
|
agentex/lib/adk/utils/__init__.py,sha256=7f6ayV0_fqyw5cwzVANNcZWGJZ-vrrYtZ0qi7KKBRFs,130
|
47
47
|
agentex/lib/adk/utils/_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
|
-
agentex/lib/adk/utils/_modules/client.py,sha256=
|
49
|
-
agentex/lib/adk/utils/_modules/templating.py,sha256=
|
48
|
+
agentex/lib/adk/utils/_modules/client.py,sha256=1OltPs65W6B_g8SDAOrbLxmiDqxYodmbq5PtUdBmj-U,847
|
49
|
+
agentex/lib/adk/utils/_modules/templating.py,sha256=wgjkE4uC1gsArK-exyxOOZwp5Yu7ePqviZuyTDlP9m0,3595
|
50
50
|
agentex/lib/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
51
|
agentex/lib/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
|
-
agentex/lib/cli/commands/agents.py,sha256=
|
52
|
+
agentex/lib/cli/commands/agents.py,sha256=PJVkopMLQEg4lOQf-Dvjb_b0TL6qaWTH2dN6_cxRneo,11417
|
53
53
|
agentex/lib/cli/commands/init.py,sha256=JsfusiLTgPu5IAI0MVDR15qA6wx5R2ZowjUJ728GJyQ,8146
|
54
54
|
agentex/lib/cli/commands/main.py,sha256=aDn9xJIIQQD33v3caET_NX-8eBxoWC3QfZGMUgjeGN8,1093
|
55
55
|
agentex/lib/cli/commands/secrets.py,sha256=cVtsqyGGieBVM4dKkbJROmzR_NJRODFngcEbi1Nc92A,5604
|
56
56
|
agentex/lib/cli/commands/tasks.py,sha256=9ARR0VgM2ZZXSFDlMiA_E9RDL2V7Piipp8Fna_OBrKQ,3652
|
57
57
|
agentex/lib/cli/commands/uv.py,sha256=n6nk2F2gPUXrvWOljSN06Y5bOEnhaZH4rulproAJktA,3553
|
58
58
|
agentex/lib/cli/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
-
agentex/lib/cli/handlers/agent_handlers.py,sha256=
|
60
|
-
agentex/lib/cli/handlers/cleanup_handlers.py,sha256=
|
61
|
-
agentex/lib/cli/handlers/deploy_handlers.py,sha256=
|
62
|
-
agentex/lib/cli/handlers/run_handlers.py,sha256=
|
59
|
+
agentex/lib/cli/handlers/agent_handlers.py,sha256=ovhnQOa-lAi5g2J3BVutA0vbprsOFe0lt2qw-qIZah4,5470
|
60
|
+
agentex/lib/cli/handlers/cleanup_handlers.py,sha256=V1V0zeErOUGTgCQqjyUl6CWtzGjFW878uzFaLOQJEyQ,7073
|
61
|
+
agentex/lib/cli/handlers/deploy_handlers.py,sha256=ULiW5hZr1PJ4wOJ1UnOkUpQiZaSDDk5w3BZxdDPMhos,14896
|
62
|
+
agentex/lib/cli/handlers/run_handlers.py,sha256=2DkaGN27nHcL5pZeoOVdlhttnft_jtVdmv_POgnRASE,13923
|
63
63
|
agentex/lib/cli/handlers/secret_handlers.py,sha256=VfAdAQovW9tG36Xgk_gGIGwTyFMxR3P6xc7fmAviNA8,24719
|
64
64
|
agentex/lib/cli/templates/default/.dockerignore.j2,sha256=hweGFxw5eDZYsb5EnRHpv27o9M1HF2PEWOxqsfBBcAE,320
|
65
65
|
agentex/lib/cli/templates/default/Dockerfile-uv.j2,sha256=tGJo_C4vwHYikV4QhGFtSiG6K7Nt4UDdJ71Gob_uTho,1109
|
@@ -82,7 +82,7 @@ agentex/lib/cli/templates/sync/manifest.yaml.j2,sha256=V497KXzvA76sHrgIJ5zRJptpI
|
|
82
82
|
agentex/lib/cli/templates/sync/pyproject.toml.j2,sha256=9cpTISM7rOoICWejV5GYMEwPn8RUmB6-E7csM1pmSFo,528
|
83
83
|
agentex/lib/cli/templates/sync/requirements.txt.j2,sha256=iTmO-z8qFkUa1jTctFCs0WYuq7Sqi6VNQAwATakh2fQ,94
|
84
84
|
agentex/lib/cli/templates/sync/deploy/example.yaml.j2,sha256=sHIEuhtruyCfGPgeLQ1ilCCnRH0HpsqhDdQT44UWUaU,1554
|
85
|
-
agentex/lib/cli/templates/sync/project/acp.py.j2,sha256=
|
85
|
+
agentex/lib/cli/templates/sync/project/acp.py.j2,sha256=X5RaE9iR4Dp-kPJL0r1QAe6ohfiOTcYizwtwGW2GzHg,1003
|
86
86
|
agentex/lib/cli/templates/temporal/.dockerignore.j2,sha256=hweGFxw5eDZYsb5EnRHpv27o9M1HF2PEWOxqsfBBcAE,320
|
87
87
|
agentex/lib/cli/templates/temporal/Dockerfile-uv.j2,sha256=bnvx-zba5DFjl7UC-TYt-Zi_UDJucjlNRCdkSqHgBiQ,1450
|
88
88
|
agentex/lib/cli/templates/temporal/Dockerfile.j2,sha256=pcszlprNTqKMpYEtA4XYlc3vWjq1b0IMQDrN1GxF7yI,1461
|
@@ -102,6 +102,7 @@ agentex/lib/cli/utils/credential_utils.py,sha256=EzI_Wdvr2lt9uf9sNML1RTkzqIv6Ljp
|
|
102
102
|
agentex/lib/cli/utils/exceptions.py,sha256=ZhQZzciroj4zeYlL0TWmoQ6oeLBcAowGhCGMP7Ac_lA,161
|
103
103
|
agentex/lib/cli/utils/kubectl_utils.py,sha256=ucI0z-Zn-sFwk84MKfCgfX9CLZxlLSx242W_0MsyYxU,4907
|
104
104
|
agentex/lib/cli/utils/kubernetes_secrets_utils.py,sha256=uKsUvKvHfRGvNxgRgOFW0MJ2RyA9QJJjPQ1QA-qcaZk,6978
|
105
|
+
agentex/lib/cli/utils/path_utils.py,sha256=WN5rZCdb9SIrtN-P6QqIQuaH54HgqQ3fUMUnaIYxT0I,5747
|
105
106
|
agentex/lib/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
107
|
agentex/lib/core/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
108
|
agentex/lib/core/adapters/llm/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
@@ -134,7 +135,7 @@ agentex/lib/core/services/adk/providers/sgp.py,sha256=9gm-sPNQ_OSTaBzL0onerKhokP
|
|
134
135
|
agentex/lib/core/services/adk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
135
136
|
agentex/lib/core/services/adk/utils/templating.py,sha256=eaXSFq31Y9p5pRD6J6SL4QdTFtxy81dilbF2XXc2JYQ,1889
|
136
137
|
agentex/lib/core/temporal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
|
-
agentex/lib/core/temporal/activities/__init__.py,sha256
|
138
|
+
agentex/lib/core/temporal/activities/__init__.py,sha256=-XmQcWIMdk7xdpOKdg4rtuIlE0K2UABcIHlzUi8e_os,7634
|
138
139
|
agentex/lib/core/temporal/activities/activity_helpers.py,sha256=QCiEFwNSMtpJuZKiAV_UolTtlf84NZk_lG3EEQmQT0s,1208
|
139
140
|
agentex/lib/core/temporal/activities/adk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
141
|
agentex/lib/core/temporal/activities/adk/agent_task_tracker_activities.py,sha256=cqND3YrRybE9Li4fw-oLfTyKzcI9M0lGBhoCq37vThc,2668
|
@@ -164,7 +165,7 @@ agentex/lib/core/tracing/__init__.py,sha256=3dLjXGTwAJxi_xxwdh8Mt04pdLyzN9VxAl8X
|
|
164
165
|
agentex/lib/core/tracing/trace.py,sha256=45Nn0Z97kC_9XNyb9N8IWUFo0OIdb7dDZShhgOTGJB0,8952
|
165
166
|
agentex/lib/core/tracing/tracer.py,sha256=nznv2deDCKmhiFv5kCfExvePtVuEKpb3LfDWTQrFl_g,1846
|
166
167
|
agentex/lib/core/tracing/tracing_processor_manager.py,sha256=KrJb7UfKBWnm9o4pMYFfgS4HtLnG7D_5zZhqS3ZDuRA,2588
|
167
|
-
agentex/lib/core/tracing/processors/agentex_tracing_processor.py,sha256=
|
168
|
+
agentex/lib/core/tracing/processors/agentex_tracing_processor.py,sha256=zauHCJf1WCirgMHzEEP7wMthpWlaZCOFnYPlbLzUpMk,3643
|
168
169
|
agentex/lib/core/tracing/processors/sgp_tracing_processor.py,sha256=HDt6Z5zbm1YRtXAooHHVpTTrdDGWD6Mo73hfI1Q8IBo,3788
|
169
170
|
agentex/lib/core/tracing/processors/tracing_processor_interface.py,sha256=wxnBA_hnOUFsABVUnVz2aWI3rv5bZpXYR4H62g5TyVw,861
|
170
171
|
agentex/lib/sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -177,8 +178,8 @@ agentex/lib/sdk/config/local_development_config.py,sha256=b1AZsOVo1RoHKbk8Nm5nC8
|
|
177
178
|
agentex/lib/sdk/config/project_config.py,sha256=CGH_r9KbnSFMj2CnBkZnfg41L2o0TeVNz6MwBDKPT_U,3642
|
178
179
|
agentex/lib/sdk/fastacp/__init__.py,sha256=UvAdexdnfb4z0F4a2sfXROFyh9EjH89kf3AxHPybzCM,75
|
179
180
|
agentex/lib/sdk/fastacp/fastacp.py,sha256=K4D7a9EiJfCgWp2hrE_TbpZBaF4Uc46MfndZK3F9mA0,3061
|
180
|
-
agentex/lib/sdk/fastacp/base/base_acp_server.py,sha256=
|
181
|
-
agentex/lib/sdk/fastacp/impl/agentic_base_acp.py,sha256=
|
181
|
+
agentex/lib/sdk/fastacp/base/base_acp_server.py,sha256=sD2p6xC0vXiD6LTj-bYz4-dvh_HxH8_q-51f-hIV0jI,17670
|
182
|
+
agentex/lib/sdk/fastacp/impl/agentic_base_acp.py,sha256=LWLAlHrs-2Lc2UICBAEFL8c3JwTA6oxPnzUzW0qQWSA,2694
|
182
183
|
agentex/lib/sdk/fastacp/impl/sync_acp.py,sha256=8FEDfBxI31NoVLX9nyckQ8QwA0UV4svC3fhGKgXBIwk,3862
|
183
184
|
agentex/lib/sdk/fastacp/impl/temporal_acp.py,sha256=ZLqjzBBVrXJCXD2bFlrcDkFvpsXZp3thC2rTwZ6xNaY,3737
|
184
185
|
agentex/lib/sdk/fastacp/tests/README.md,sha256=HejScemERLCs-wCgU3l1Xo4tcQ4gQy15GgoF-CkNh-0,8270
|
@@ -199,6 +200,7 @@ agentex/lib/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
199
200
|
agentex/lib/types/acp.py,sha256=lFuWZwlXy1TNUHGvCXmyPLPbt8ME_2lejdWwx8VcodY,2970
|
200
201
|
agentex/lib/types/agent_configs.py,sha256=3wRa2okimSzi2v8sJyMyrqRlcu_4sxes-_4smEK6fq8,2798
|
201
202
|
agentex/lib/types/agent_results.py,sha256=ev6WnPLfZRbhy2HnBmdIrZq1ExVeaweXoLRxYGspyWM,653
|
203
|
+
agentex/lib/types/converters.py,sha256=u6fLb0rBUDA6nF5hdbC8ms6H-Z21IQfLlIvYpau_P5g,2283
|
202
204
|
agentex/lib/types/credentials.py,sha256=xUyh0MiNgy1c-BSBGXqbAMgbFEqnglESK99SRbsCsZA,1442
|
203
205
|
agentex/lib/types/fastacp.py,sha256=nU4rT823Ckix7bFwvVXtPsk6el3U1E4TH-OEvMqIBr4,1304
|
204
206
|
agentex/lib/types/files.py,sha256=sNxiuR_oEo7Z0YMqjQShErvS3txWyobrZzc4QMMM61U,320
|
@@ -221,16 +223,16 @@ agentex/lib/utils/temporal.py,sha256=sXo8OPMMXiyrF7OSBCJBuN_ufyQOD2bLOXgDbVZoyds
|
|
221
223
|
agentex/lib/utils/dev_tools/__init__.py,sha256=oaHxw6ymfhNql-kzXHv3NWVHuqD4fHumasNXJG7kHTU,261
|
222
224
|
agentex/lib/utils/dev_tools/async_messages.py,sha256=-alUK1KFltcRb6xtRtIJIRJW9Sf1FwDRgaNPhOn-luw,18105
|
223
225
|
agentex/resources/__init__.py,sha256=74rMqWBzQ2dSrKQqsrd7-jskPws0O_ogkFltvZO3HoU,3265
|
224
|
-
agentex/resources/agents.py,sha256=
|
226
|
+
agentex/resources/agents.py,sha256=Iwt2jnBUgSynMdfxYjW7KV9o0nZjT7cgiSqS_Zd4jmU,46735
|
225
227
|
agentex/resources/events.py,sha256=Zc9JhUm3bq2VFnBAolC0M7KZernzj1AjZ_vj0ibP4GY,10412
|
226
228
|
agentex/resources/spans.py,sha256=wmcUs4XbXIF5rPeyU_f39c2RTbTLnkuh2LYogZEBD6s,20936
|
227
229
|
agentex/resources/states.py,sha256=O31A8--n7n0rHsng2e1oCUAzLNjQIxDUk7rq0IXfgGM,19262
|
228
|
-
agentex/resources/tasks.py,sha256=
|
230
|
+
agentex/resources/tasks.py,sha256=R-pfvSt6W9n0QxPyxrgY6nTSG20YtkH_NXgXPNbnRuo,24780
|
229
231
|
agentex/resources/tracker.py,sha256=YxSeiloMwIqrS9nY7SlHclauRA7142qrKw34xgwqYbA,14103
|
230
232
|
agentex/resources/messages/__init__.py,sha256=_J1eusFtr_k6zrAntJSuqx6LWEUBSTrV1OZZh7MaDPE,1015
|
231
233
|
agentex/resources/messages/batch.py,sha256=pegCmnjK_J0jek5ChX1pKpq5RmCucTYLbK69H6qGVS4,9629
|
232
|
-
agentex/resources/messages/messages.py,sha256=
|
233
|
-
agentex/types/__init__.py,sha256=
|
234
|
+
agentex/resources/messages/messages.py,sha256=fuFmmGNOjRJVzmYHcfP2trg0yii0n9MPPCpt7F8fDs4,17930
|
235
|
+
agentex/types/__init__.py,sha256=v-2hxFsIvOZ_2mZy-5RqILX0VJWG4sN9MRvXAbThqYI,3514
|
234
236
|
agentex/types/acp_type.py,sha256=Fj-4SzmM6m95ck_ZXtNbcWggHiD9F49bxBLPbl1fxe4,208
|
235
237
|
agentex/types/agent.py,sha256=WZRc8VZtc-JIeNHw5FsVTSMrxlaJ5A0ABvHv3t_zA4s,792
|
236
238
|
agentex/types/agent_list_params.py,sha256=81IWnRZ2rLfHH7GB6VkXShYjb44DO0guG1znJcV3tuI,316
|
@@ -248,7 +250,7 @@ agentex/types/event_list_params.py,sha256=Rrz0yo2w3gMTNYe3HQS9YCX1VktE_aaktuHezx
|
|
248
250
|
agentex/types/event_list_response.py,sha256=rjUCkwS0pXnfqHEVPEKZdLIGJ14uXOrjatuOfR36s5s,254
|
249
251
|
agentex/types/message_author.py,sha256=_IIVLAcZsLTG_vQWFpjWuxLIaHrc6wkv3q7qu5gam0o,218
|
250
252
|
agentex/types/message_create_params.py,sha256=Vt7Hig0lI8qxWDpJ4JhjfjglSzptI2PjzbrOD1Qkmxk,502
|
251
|
-
agentex/types/message_list_params.py,sha256=
|
253
|
+
agentex/types/message_list_params.py,sha256=MGXLwUUBaaiG-rsGjui5dlJ0sxv1twkSugFoOLXcX0E,360
|
252
254
|
agentex/types/message_list_response.py,sha256=YYDf-57zLS-E1eX3EZxz7c6XCuBcRBws01_q2G7uk4Y,277
|
253
255
|
agentex/types/message_style.py,sha256=nuoXzoDyP3KAQsQeKHaiby1EMxeY-8TJjWr8eMMpQEE,219
|
254
256
|
agentex/types/message_update_params.py,sha256=_KpnJ56FNeoIcwodQmAgsweqH1YAeIgYVT2jo9ahUhY,502
|
@@ -263,8 +265,7 @@ agentex/types/state_list_params.py,sha256=jsBeE98mVvS-pk9iytNTVVSW6pz7OM4Zt-OxC2
|
|
263
265
|
agentex/types/state_list_response.py,sha256=3UyMRzP3zdEKo9hTkJdvBHjmv6II4KnwoZ8GvlzPCSI,254
|
264
266
|
agentex/types/state_update_params.py,sha256=TpCXMrYaT2MWeOPng9-RGvGX9vE61Te9r3CFRQzzIDg,377
|
265
267
|
agentex/types/task.py,sha256=Pgj5HSrThPJgFRKWXPgW3LRT9Jwgn9eR_CCnlbNznzU,543
|
266
|
-
agentex/types/
|
267
|
-
agentex/types/task_delete_response.py,sha256=Pxq9Bak_NPudBQusbuQnAG6HihNCyA5ltKoqR5w3rPs,233
|
268
|
+
agentex/types/task_list_params.py,sha256=euvsWpK2kjJOfvrkUnSFiofZlU2sZHd2mar3qYtAA8I,328
|
268
269
|
agentex/types/task_list_response.py,sha256=8Q-RIanLmUC9vOuDXoW5gjpZeE-HR6IrBugG7-cUAZQ,249
|
269
270
|
agentex/types/task_message.py,sha256=hoLAkiQJd1Fl7EjLof-vZq6zVnDw9SKmnV6V74Po58A,918
|
270
271
|
agentex/types/task_message_content.py,sha256=57ebp-65y52KOZ7usVJShArIdXqBhFo5eOn8uy4HM_c,575
|
@@ -288,8 +289,10 @@ agentex/types/messages/batch_create_params.py,sha256=trUV75ntEVnxYhd1FIWub6dHBaN
|
|
288
289
|
agentex/types/messages/batch_create_response.py,sha256=yaSLTw2MWWpHF23BGO1Xy9js38_7EIqHAuiLha8VSfc,278
|
289
290
|
agentex/types/messages/batch_update_params.py,sha256=Ug5CThbD49a8j4qucg04OdmVrp_gApgpw0hg6NLsR3g,433
|
290
291
|
agentex/types/messages/batch_update_response.py,sha256=TbSBe6SuPzjXXWSj-nRjT1JHGBooTshHQQDa1AixQA8,278
|
291
|
-
|
292
|
-
|
293
|
-
agentex_sdk-0.2.
|
294
|
-
agentex_sdk-0.2.
|
295
|
-
agentex_sdk-0.2.
|
292
|
+
agentex/types/shared/__init__.py,sha256=IKs-Qn5Yja0kFh1G1kDqYZo43qrOu1hSoxlPdN-85dI,149
|
293
|
+
agentex/types/shared/delete_response.py,sha256=8qH3zvQXaOHYQSHyXi7UQxdR4miTzR7V9K4zXVsiUyk,215
|
294
|
+
agentex_sdk-0.2.6.dist-info/METADATA,sha256=qKBqHbctWyM-HfcIoAqlq01C9hGTktyz5k5XLMFkV7Y,14118
|
295
|
+
agentex_sdk-0.2.6.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
296
|
+
agentex_sdk-0.2.6.dist-info/entry_points.txt,sha256=V7vJuMZdF0UlvgX6KiBN7XUvq_cxF5kplcYvc1QlFaQ,62
|
297
|
+
agentex_sdk-0.2.6.dist-info/licenses/LICENSE,sha256=Q1AOx2FtRcMlyMgQJ9eVN2WKPq2mQ33lnB4tvWxabLA,11337
|
298
|
+
agentex_sdk-0.2.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|