Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.08 KB

TemplateMentor.md

File metadata and controls

35 lines (26 loc) · 1.08 KB

TemplateMentor

Properties

Name Type Description Notes
id int [readonly]
name str
slug str
unique_id str [optional]
description str [optional]
system_prompt str [optional]
platform_key str [optional]

Example

from iblai.models.template_mentor import TemplateMentor

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

# convert the object into a dict
template_mentor_dict = template_mentor_instance.to_dict()
# create an instance of TemplateMentor from a dict
template_mentor_from_dict = TemplateMentor.from_dict(template_mentor_dict)

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