Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.34 KB

File metadata and controls

38 lines (29 loc) · 1.34 KB

CreateAIAgentRequest

Properties

Name Type Description Notes
name str
description str
group str [optional]
system_prompt str
temperature float [optional]
model_id str
max_tokens int [optional]
allowed_tools List[str] [optional]
allowed_collections List[str] [optional]
created_by str User identifier who created the agent [optional]

Example

from quantcdn.models.create_ai_agent_request import CreateAIAgentRequest

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

# convert the object into a dict
create_ai_agent_request_dict = create_ai_agent_request_instance.to_dict()
# create an instance of CreateAIAgentRequest from a dict
create_ai_agent_request_from_dict = CreateAIAgentRequest.from_dict(create_ai_agent_request_dict)

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