Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 896 Bytes

File metadata and controls

30 lines (21 loc) · 896 Bytes

AskRequest

Request body for POST /v1/agent/ask.

Properties

Name Type Description Notes
prompt str User prompt passed directly to the agent

Example

from ksapi.models.ask_request import AskRequest

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

# convert the object into a dict
ask_request_dict = ask_request_instance.to_dict()
# create an instance of AskRequest from a dict
ask_request_from_dict = AskRequest.from_dict(ask_request_dict)

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