Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1005 Bytes

File metadata and controls

31 lines (22 loc) · 1005 Bytes

SummaryData

The actual summary response.

Properties

Name Type Description Notes
output str Contains the summary text. [optional]
tokens int A count of how many tokens were used to perform the summary. [optional]

Example

from openapi_client.models.summary_data import SummaryData

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

# convert the object into a dict
summary_data_dict = summary_data_instance.to_dict()
# create an instance of SummaryData from a dict
summary_data_from_dict = SummaryData.from_dict(summary_data_dict)

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