Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

CompletionResult

Properties

Name Type Description Notes
response str The generative response from the KnowledgeBase
status CompletionResultStatus

Example

from freeclimb.models.completion_result import CompletionResult

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

# convert the object into a dict
completion_result_dict = completion_result_instance.to_dict()
# create an instance of CompletionResult from a dict
completion_result_from_dict = CompletionResult.from_dict(completion_result_dict)

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