| Name |
Type |
Description |
Notes |
| query |
str |
Question to ask the Knowledge Base |
|
from freeclimb.models.completion_request import CompletionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CompletionRequest from a JSON string
completion_request_instance = CompletionRequest.from_json(json)
# print the JSON string representation of the object
print(CompletionRequest.to_json())
# convert the object into a dict
completion_request_dict = completion_request_instance.to_dict()
# create an instance of CompletionRequest from a dict
completion_request_from_dict = CompletionRequest.from_dict(completion_request_dict)
[Back to Model list] [Back to API list] [Back to README]