The actual summary response.
| 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] |
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)