Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

FastGPT200ResponseData

The response object which contains the output and token count for the query.

Properties

Name Type Description Notes
output str The actual response to the query. [optional]
tokens int How many tokens were used to generate the response. [optional]
references List[SearchObject] A collection of search results that are related to the query. [optional]

Example

from openapi_client.models.fast_gpt200_response_data import FastGPT200ResponseData

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

# convert the object into a dict
fast_gpt200_response_data_dict = fast_gpt200_response_data_instance.to_dict()
# create an instance of FastGPT200ResponseData from a dict
fast_gpt200_response_data_from_dict = FastGPT200ResponseData.from_dict(fast_gpt200_response_data_dict)

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