Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.52 KB

File metadata and controls

38 lines (29 loc) · 1.52 KB

ListAIAgents200ResponseAgentsInner

Properties

Name Type Description Notes
agent_id str [optional]
name str [optional]
description str [optional]
group str [optional]
model_id str [optional]
temperature float [optional]
max_tokens int [optional]
allowed_tools List[str] [optional]
created_at datetime [optional]
updated_at datetime [optional]

Example

from quantcdn.models.list_ai_agents200_response_agents_inner import ListAIAgents200ResponseAgentsInner

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

# convert the object into a dict
list_ai_agents200_response_agents_inner_dict = list_ai_agents200_response_agents_inner_instance.to_dict()
# create an instance of ListAIAgents200ResponseAgentsInner from a dict
list_ai_agents200_response_agents_inner_from_dict = ListAIAgents200ResponseAgentsInner.from_dict(list_ai_agents200_response_agents_inner_dict)

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