MCPcopy
hub / github.com/microsoft/agent-lightning / update_rollout

Method update_rollout

tests/store/dummy_store.py:153–170  ·  view source on GitHub ↗
(
        self,
        rollout_id: str,
        input: TaskInput | Any = UNSET,
        mode: Optional[str] | Any = UNSET,
        resources_id: Optional[str] | Any = UNSET,
        status: RolloutStatus | Any = UNSET,
        config: Any = UNSET,
        metadata: Optional[Dict[str, Any]] | Any = UNSET,
    )

Source from the content-addressed store, hash-verified

151 return self.return_values["query_spans"]
152
153 async def update_rollout(
154 self,
155 rollout_id: str,
156 input: TaskInput | Any = UNSET,
157 mode: Optional[str] | Any = UNSET,
158 resources_id: Optional[str] | Any = UNSET,
159 status: RolloutStatus | Any = UNSET,
160 config: Any = UNSET,
161 metadata: Optional[Dict[str, Any]] | Any = UNSET,
162 ) -> Rollout:
163 self.calls.append(
164 (
165 "update_rollout",
166 (rollout_id, input, mode, resources_id, status, config, metadata),
167 {},
168 )
169 )
170 return self.return_values["update_rollout"]
171
172 async def update_attempt(
173 self,

Calls

no outgoing calls