Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 922 Bytes

MentorTrace.md

File metadata and controls

32 lines (23 loc) · 922 Bytes

MentorTrace

Properties

Name Type Description Notes
session_id str
cost float
latency float
username str

Example

from iblai.models.mentor_trace import MentorTrace

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

# convert the object into a dict
mentor_trace_dict = mentor_trace_instance.to_dict()
# create an instance of MentorTrace from a dict
mentor_trace_from_dict = MentorTrace.from_dict(mentor_trace_dict)

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