Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 954 Bytes

MentorData.md

File metadata and controls

32 lines (23 loc) · 954 Bytes

MentorData

Properties

Name Type Description Notes
mentor str
total_cost float
total_latency float
mentor_traces List[MentorTrace]

Example

from iblai.models.mentor_data import MentorData

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

# convert the object into a dict
mentor_data_dict = mentor_data_instance.to_dict()
# create an instance of MentorData from a dict
mentor_data_from_dict = MentorData.from_dict(mentor_data_dict)

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