Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

SummaryData

Properties

Name Type Description Notes
ai_summary str Summary with code tags removed
predicted_function_name str Name the model proposes for this function, produced alongside the summary. [optional]
summary str Raw summary from the model
task_status str Task status

Example

from revengai.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]