File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
src/oz_agent_sdk/types/agent Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 14
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-6c175d34cab49d79dbb24289ae516867404c42f3097264bbae171aced72ecc49.yml
33openapi_spec_hash : 5abb55a1fc2836207bc88d4815f47f24
4- config_hash : a28c6f6a70109573c79cd87a158124dc
4+ config_hash : a4b1ffc5b2e162efb3d557c7461153c1
Original file line number Diff line number Diff line change 5151
5252``` python
5353from oz_agent_sdk.types.agent import (
54- ScheduleHistoryItem ,
54+ ScheduledAgentHistoryItem ,
5555 ScheduledAgentItem,
5656 ScheduleListResponse,
5757 ScheduleDeleteResponse,
Original file line number Diff line number Diff line change 1010from .run_list_response import RunListResponse as RunListResponse
1111from .run_cancel_response import RunCancelResponse as RunCancelResponse
1212from .scheduled_agent_item import ScheduledAgentItem as ScheduledAgentItem
13- from .schedule_history_item import ScheduleHistoryItem as ScheduleHistoryItem
1413from .schedule_create_params import ScheduleCreateParams as ScheduleCreateParams
1514from .schedule_list_response import ScheduleListResponse as ScheduleListResponse
1615from .schedule_update_params import ScheduleUpdateParams as ScheduleUpdateParams
1716from .schedule_delete_response import ScheduleDeleteResponse as ScheduleDeleteResponse
17+ from .scheduled_agent_history_item import ScheduledAgentHistoryItem as ScheduledAgentHistoryItem
1818from .session_check_redirect_response import SessionCheckRedirectResponse as SessionCheckRedirectResponse
Original file line number Diff line number Diff line change 55
66from ..._models import BaseModel
77
8- __all__ = ["ScheduleHistoryItem " ]
8+ __all__ = ["ScheduledAgentHistoryItem " ]
99
1010
11- class ScheduleHistoryItem (BaseModel ):
11+ class ScheduledAgentHistoryItem (BaseModel ):
1212 """Scheduler-derived history metadata for a scheduled agent"""
1313
1414 last_ran : Optional [datetime ] = None
Original file line number Diff line number Diff line change 77from ..._models import BaseModel
88from ..user_profile import UserProfile
99from ..ambient_agent_config import AmbientAgentConfig
10- from .schedule_history_item import ScheduleHistoryItem
1110from ..cloud_environment_config import CloudEnvironmentConfig
11+ from .scheduled_agent_history_item import ScheduledAgentHistoryItem
1212
1313__all__ = ["ScheduledAgentItem" ]
1414
@@ -46,7 +46,7 @@ class ScheduledAgentItem(BaseModel):
4646 environment : Optional [CloudEnvironmentConfig ] = None
4747 """Configuration for a cloud environment used by scheduled agents"""
4848
49- history : Optional [ScheduleHistoryItem ] = None
49+ history : Optional [ScheduledAgentHistoryItem ] = None
5050 """Scheduler-derived history metadata for a scheduled agent"""
5151
5252 last_spawn_error : Optional [str ] = None
You can’t perform that action at this time.
0 commit comments