Name |
Type |
Description |
Notes |
id |
int |
|
[readonly] |
display_name |
str |
|
[optional] |
profile_image |
str |
|
[optional] |
initial_message |
str |
|
[optional] |
suggested_message |
str |
|
[optional] |
theme |
ThemeEnum |
|
[optional] |
user_message_color |
str |
|
[optional] |
mentor_bubble_color |
str |
|
[optional] |
align_mentor_bubble |
AlignMentorBubbleEnum |
|
[optional] |
mentor |
str |
|
[readonly] |
mentor_slug |
str |
|
[readonly] |
mentor_unique_id |
str |
|
[readonly] |
metadata |
object |
|
[readonly] |
mentor_visibility |
MentorSettingsMentorVisibility |
|
[optional] |
enable_image_generation |
bool |
|
[optional] |
enable_web_browsing |
bool |
|
[optional] |
enable_code_interpreter |
bool |
|
[optional] |
custom_css |
str |
|
[optional] |
allow_anonymous |
bool |
|
[readonly] |
mentor_description |
str |
|
[readonly] |
suggested_prompts |
object |
|
[readonly] |
proactive_message |
str |
|
[readonly] |
mentor_tools |
object |
|
[readonly] |
can_use_tools |
bool |
|
[readonly] |
llm_temperature |
float |
|
[readonly] |
llm_provider |
str |
|
[readonly] |
llm_name |
str |
|
[readonly] |
proactive_prompt |
str |
|
[readonly] |
from iblai.models.mentor_settings import MentorSettings
# TODO update the JSON string below
json = "{}"
# create an instance of MentorSettings from a JSON string
mentor_settings_instance = MentorSettings.from_json(json)
# print the JSON string representation of the object
print(MentorSettings.to_json())
# convert the object into a dict
mentor_settings_dict = mentor_settings_instance.to_dict()
# create an instance of MentorSettings from a dict
mentor_settings_from_dict = MentorSettings.from_dict(mentor_settings_dict)
[Back to Model list] [Back to API list] [Back to README]