Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.96 KB

File metadata and controls

37 lines (28 loc) · 1.96 KB

GetAIOrchestrationStatus200Response

Properties

Name Type Description Notes
orchestration_id str Unique orchestration identifier
status str Current orchestration status
tool_count int Total number of async tools in this orchestration
completed_tools int Number of tools that have completed [optional]
synthesized_response str AI-synthesized response combining all tool results (only present when status=complete) [optional]
tools List[GetAIOrchestrationStatus200ResponseToolsInner] Status of individual tool executions [optional]
error str Error message (only present when status=failed) [optional]
created_at datetime When orchestration was created
completed_at datetime When orchestration completed (if status in complete or failed) [optional]

Example

from quantcdn.models.get_ai_orchestration_status200_response import GetAIOrchestrationStatus200Response

# TODO update the JSON string below
json = "{}"
# create an instance of GetAIOrchestrationStatus200Response from a JSON string
get_ai_orchestration_status200_response_instance = GetAIOrchestrationStatus200Response.from_json(json)
# print the JSON string representation of the object
print(GetAIOrchestrationStatus200Response.to_json())

# convert the object into a dict
get_ai_orchestration_status200_response_dict = get_ai_orchestration_status200_response_instance.to_dict()
# create an instance of GetAIOrchestrationStatus200Response from a dict
get_ai_orchestration_status200_response_from_dict = GetAIOrchestrationStatus200Response.from_dict(get_ai_orchestration_status200_response_dict)

[Back to Model list] [Back to API list] [Back to README]