The response object which contains the output and token count for the query.
| 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] |
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)