Skip to content

Commit bfc177d

Browse files
feat(api): api update
1 parent cac4b2c commit bfc177d

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-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-4ae441fa9819e53daaaa92486ff99eee5b638eeee7237f535b6de9b53868b6a8.yml
3-
openapi_spec_hash: 05bfd452bc8d456f546a8273bb1718f8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-80c50e5d150c0baca970fa26bc298a878e02bf5869a16fd3a812255cca077333.yml
3+
openapi_spec_hash: 41bed3c1c935a8054600e6d177faa396
44
config_hash: aeabb3a919ad2763f5d0f41961a2520a

src/agentex/types/agent.py

Lines changed: 7 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

@@ -29,6 +29,12 @@ class Agent(BaseModel):
2929
updated_at: datetime
3030
"""The timestamp when the agent was last updated"""
3131

32+
registered_at: Optional[datetime] = None
33+
"""The timestamp when the agent was last registered"""
34+
35+
registration_metadata: Optional[Dict[str, object]] = None
36+
"""The metadata for the agent's registration."""
37+
3238
status: Optional[Literal["Pending", "Building", "Ready", "Failed", "Unknown"]] = None
3339
"""The status of the action, indicating if it's building, ready, failed, etc."""
3440

0 commit comments

Comments
 (0)