| Name |
Type |
Description |
Notes |
| prompt |
str |
|
|
from codegen_api_client.models.create_agent_run_input import CreateAgentRunInput
# TODO update the JSON string below
json = "{}"
# create an instance of CreateAgentRunInput from a JSON string
create_agent_run_input_instance = CreateAgentRunInput.from_json(json)
# print the JSON string representation of the object
print(CreateAgentRunInput.to_json())
# convert the object into a dict
create_agent_run_input_dict = create_agent_run_input_instance.to_dict()
# create an instance of CreateAgentRunInput from a dict
create_agent_run_input_from_dict = CreateAgentRunInput.from_dict(create_agent_run_input_dict)
[Back to Model list] [Back to API list] [Back to README]