Skip to content

Commit 7b4c80a

Browse files
feat(api): api update
1 parent 4b6261b commit 7b4c80a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
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-b97510d27c568c48ae1618ab3509ea49c6036c5e6805e83507b221c2f3b5a09b.yml
3-
openapi_spec_hash: db386e258e9548036a03ebf92ed5e95f
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-4e747d1e081a07dcd47f7aaed0a8fc18c748658d4c8875f793daf4850e74b47c.yml
3+
openapi_spec_hash: 3a159d7dc86cae47945e678009a197be
44
config_hash: aeabb3a919ad2763f5d0f41961a2520a

src/agentex/types/task.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import Optional
3+
from typing import Dict, Optional
44
from datetime import datetime
55
from typing_extensions import Literal
66

@@ -16,6 +16,8 @@ class Task(BaseModel):
1616

1717
name: Optional[str] = None
1818

19+
params: Optional[Dict[str, object]] = None
20+
1921
status: Optional[Literal["CANCELED", "COMPLETED", "FAILED", "RUNNING", "TERMINATED", "TIMED_OUT"]] = None
2022

2123
status_reason: Optional[str] = None

0 commit comments

Comments
 (0)