Skip to content

Commit d79d68f

Browse files
feat(api): api update
1 parent 4641b47 commit d79d68f

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 34
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-24426221ca34bef99c2533d049fc93a3b28718229d79339ff4a6f613a4f44ef6.yml
3-
openapi_spec_hash: cb4a09c023345455749bfc45040951d6
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-1df9b80a47100ee8c582bdf0301d32a1ce69de186869a1d1ad72a23d087824ba.yml
3+
openapi_spec_hash: cfc41e019e789b7afef49b1ed41da15d
44
config_hash: 6481ea6b42040f435dedcb00a98f35f8

src/agentex/types/agent_rpc_by_name_params.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ class ParamsSendMessageRequest(TypedDict, total=False):
5454
task_id: Optional[str]
5555
"""The ID of the task that the message was sent to"""
5656

57+
task_name: Optional[str]
58+
"""The name of the task that the message was sent to"""
59+
60+
task_params: Optional[Dict[str, object]]
61+
"""The parameters for the task (only used when creating new tasks)"""
62+
5763

5864
class ParamsSendEventRequest(TypedDict, total=False):
5965
content: Optional[TaskMessageContentParam]

src/agentex/types/agent_rpc_params.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ class ParamsSendMessageRequest(TypedDict, total=False):
5454
task_id: Optional[str]
5555
"""The ID of the task that the message was sent to"""
5656

57+
task_name: Optional[str]
58+
"""The name of the task that the message was sent to"""
59+
60+
task_params: Optional[Dict[str, object]]
61+
"""The parameters for the task (only used when creating new tasks)"""
62+
5763

5864
class ParamsSendEventRequest(TypedDict, total=False):
5965
content: Optional[TaskMessageContentParam]

0 commit comments

Comments
 (0)