@iblai/iblai-api 4.104.0-ai → 4.105.0-ai
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types/models/Mentor.d.ts +4 -0
- package/dist/types/models/MentorCreate.d.ts +4 -0
- package/dist/types/models/MentorFromTemplateWithSettingRequest.d.ts +1 -0
- package/dist/types/models/MentorSettings.d.ts +1 -0
- package/dist/types/models/MentorSettingsPublic.d.ts +1 -0
- package/dist/types/models/MentorSettingsRequest.d.ts +1 -0
- package/dist/types/models/PatchedMentorCreate.d.ts +4 -0
- package/package.json +1 -1
- package/sdk_schema.yml +24 -0
- package/src/models/Mentor.ts +4 -0
- package/src/models/MentorCreate.ts +4 -0
- package/src/models/MentorFromTemplateWithSettingRequest.ts +1 -0
- package/src/models/MentorSettings.ts +1 -0
- package/src/models/MentorSettingsPublic.ts +1 -0
- package/src/models/MentorSettingsRequest.ts +1 -0
- package/src/models/PatchedMentorCreate.ts +4 -0
|
@@ -52,6 +52,10 @@ export type Mentor = {
|
|
|
52
52
|
* Prompt template used to start a conversation with the user when greeting_type is proactive_prompt. This will be sent to the LLM so it can respond naturally
|
|
53
53
|
*/
|
|
54
54
|
proactive_prompt?: string;
|
|
55
|
+
/**
|
|
56
|
+
* Prompt to be used to guide the user through their studies when study mode tool is enabled.
|
|
57
|
+
*/
|
|
58
|
+
study_mode_prompt?: string;
|
|
55
59
|
/**
|
|
56
60
|
* Disclaimer to be shown to the user when the mentor is used.
|
|
57
61
|
*/
|
|
@@ -42,6 +42,10 @@ export type MentorCreate = {
|
|
|
42
42
|
* Prompt template used to start a conversation with the user when greeting_type is proactive_prompt. This will be sent to the LLM so it can respond naturally
|
|
43
43
|
*/
|
|
44
44
|
proactive_prompt?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Prompt to be used to guide the user through their studies when study mode tool is enabled.
|
|
47
|
+
*/
|
|
48
|
+
study_mode_prompt?: string;
|
|
45
49
|
/**
|
|
46
50
|
* Disclaimer to be shown to the user when the mentor is used.
|
|
47
51
|
*/
|
|
@@ -38,6 +38,7 @@ export type MentorSettings = {
|
|
|
38
38
|
readonly can_use_tools: boolean;
|
|
39
39
|
readonly llm_name: string;
|
|
40
40
|
readonly proactive_prompt: string;
|
|
41
|
+
readonly study_mode_prompt: string;
|
|
41
42
|
readonly disclaimer: string;
|
|
42
43
|
readonly enable_disclaimer: boolean;
|
|
43
44
|
readonly show_attachment: boolean;
|
|
@@ -36,6 +36,7 @@ export type MentorSettingsPublic = {
|
|
|
36
36
|
readonly can_use_tools: boolean;
|
|
37
37
|
readonly llm_name: string;
|
|
38
38
|
readonly proactive_prompt: string;
|
|
39
|
+
readonly study_mode_prompt: string;
|
|
39
40
|
readonly disclaimer: string;
|
|
40
41
|
readonly enable_disclaimer: boolean;
|
|
41
42
|
readonly show_attachment: boolean;
|
|
@@ -42,6 +42,10 @@ export type PatchedMentorCreate = {
|
|
|
42
42
|
* Prompt template used to start a conversation with the user when greeting_type is proactive_prompt. This will be sent to the LLM so it can respond naturally
|
|
43
43
|
*/
|
|
44
44
|
proactive_prompt?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Prompt to be used to guide the user through their studies when study mode tool is enabled.
|
|
47
|
+
*/
|
|
48
|
+
study_mode_prompt?: string;
|
|
45
49
|
/**
|
|
46
50
|
* Disclaimer to be shown to the user when the mentor is used.
|
|
47
51
|
*/
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -77096,6 +77096,10 @@ components:
|
|
|
77096
77096
|
description: Prompt template used to start a conversation with the user
|
|
77097
77097
|
when greeting_type is proactive_prompt. This will be sent to the LLM so
|
|
77098
77098
|
it can respond naturally
|
|
77099
|
+
study_mode_prompt:
|
|
77100
|
+
type: string
|
|
77101
|
+
description: Prompt to be used to guide the user through their studies when
|
|
77102
|
+
study mode tool is enabled.
|
|
77099
77103
|
disclaimer:
|
|
77100
77104
|
type: string
|
|
77101
77105
|
description: Disclaimer to be shown to the user when the mentor is used.
|
|
@@ -77423,6 +77427,10 @@ components:
|
|
|
77423
77427
|
description: Prompt template used to start a conversation with the user
|
|
77424
77428
|
when greeting_type is proactive_prompt. This will be sent to the LLM so
|
|
77425
77429
|
it can respond naturally
|
|
77430
|
+
study_mode_prompt:
|
|
77431
|
+
type: string
|
|
77432
|
+
description: Prompt to be used to guide the user through their studies when
|
|
77433
|
+
study mode tool is enabled.
|
|
77426
77434
|
disclaimer:
|
|
77427
77435
|
type: string
|
|
77428
77436
|
description: Disclaimer to be shown to the user when the mentor is used.
|
|
@@ -77833,6 +77841,8 @@ components:
|
|
|
77833
77841
|
marketing_conversations: {}
|
|
77834
77842
|
proactive_prompt:
|
|
77835
77843
|
type: string
|
|
77844
|
+
study_mode_prompt:
|
|
77845
|
+
type: string
|
|
77836
77846
|
disclaimer:
|
|
77837
77847
|
type: string
|
|
77838
77848
|
enable_disclaimer:
|
|
@@ -78210,6 +78220,9 @@ components:
|
|
|
78210
78220
|
proactive_prompt:
|
|
78211
78221
|
type: string
|
|
78212
78222
|
readOnly: true
|
|
78223
|
+
study_mode_prompt:
|
|
78224
|
+
type: string
|
|
78225
|
+
readOnly: true
|
|
78213
78226
|
disclaimer:
|
|
78214
78227
|
type: string
|
|
78215
78228
|
readOnly: true
|
|
@@ -78463,6 +78476,7 @@ components:
|
|
|
78463
78476
|
- show_rag_images
|
|
78464
78477
|
- show_voice_call
|
|
78465
78478
|
- show_voice_record
|
|
78479
|
+
- study_mode_prompt
|
|
78466
78480
|
- subjects
|
|
78467
78481
|
- suggested_prompts
|
|
78468
78482
|
- system_prompt
|
|
@@ -78558,6 +78572,9 @@ components:
|
|
|
78558
78572
|
proactive_prompt:
|
|
78559
78573
|
type: string
|
|
78560
78574
|
readOnly: true
|
|
78575
|
+
study_mode_prompt:
|
|
78576
|
+
type: string
|
|
78577
|
+
readOnly: true
|
|
78561
78578
|
disclaimer:
|
|
78562
78579
|
type: string
|
|
78563
78580
|
readOnly: true
|
|
@@ -78723,6 +78740,7 @@ components:
|
|
|
78723
78740
|
- show_rag_images
|
|
78724
78741
|
- show_voice_call
|
|
78725
78742
|
- show_voice_record
|
|
78743
|
+
- study_mode_prompt
|
|
78726
78744
|
- subjects
|
|
78727
78745
|
- suggested_prompts
|
|
78728
78746
|
- types
|
|
@@ -78811,6 +78829,8 @@ components:
|
|
|
78811
78829
|
maximum: 1.0
|
|
78812
78830
|
proactive_prompt:
|
|
78813
78831
|
type: string
|
|
78832
|
+
study_mode_prompt:
|
|
78833
|
+
type: string
|
|
78814
78834
|
disclaimer:
|
|
78815
78835
|
type: string
|
|
78816
78836
|
placeholder_prompt:
|
|
@@ -82438,6 +82458,10 @@ components:
|
|
|
82438
82458
|
description: Prompt template used to start a conversation with the user
|
|
82439
82459
|
when greeting_type is proactive_prompt. This will be sent to the LLM so
|
|
82440
82460
|
it can respond naturally
|
|
82461
|
+
study_mode_prompt:
|
|
82462
|
+
type: string
|
|
82463
|
+
description: Prompt to be used to guide the user through their studies when
|
|
82464
|
+
study mode tool is enabled.
|
|
82441
82465
|
disclaimer:
|
|
82442
82466
|
type: string
|
|
82443
82467
|
description: Disclaimer to be shown to the user when the mentor is used.
|
package/src/models/Mentor.ts
CHANGED
|
@@ -56,6 +56,10 @@ export type Mentor = {
|
|
|
56
56
|
* Prompt template used to start a conversation with the user when greeting_type is proactive_prompt. This will be sent to the LLM so it can respond naturally
|
|
57
57
|
*/
|
|
58
58
|
proactive_prompt?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Prompt to be used to guide the user through their studies when study mode tool is enabled.
|
|
61
|
+
*/
|
|
62
|
+
study_mode_prompt?: string;
|
|
59
63
|
/**
|
|
60
64
|
* Disclaimer to be shown to the user when the mentor is used.
|
|
61
65
|
*/
|
|
@@ -46,6 +46,10 @@ export type MentorCreate = {
|
|
|
46
46
|
* Prompt template used to start a conversation with the user when greeting_type is proactive_prompt. This will be sent to the LLM so it can respond naturally
|
|
47
47
|
*/
|
|
48
48
|
proactive_prompt?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Prompt to be used to guide the user through their studies when study mode tool is enabled.
|
|
51
|
+
*/
|
|
52
|
+
study_mode_prompt?: string;
|
|
49
53
|
/**
|
|
50
54
|
* Disclaimer to be shown to the user when the mentor is used.
|
|
51
55
|
*/
|
|
@@ -42,6 +42,7 @@ export type MentorSettings = {
|
|
|
42
42
|
readonly can_use_tools: boolean;
|
|
43
43
|
readonly llm_name: string;
|
|
44
44
|
readonly proactive_prompt: string;
|
|
45
|
+
readonly study_mode_prompt: string;
|
|
45
46
|
readonly disclaimer: string;
|
|
46
47
|
readonly enable_disclaimer: boolean;
|
|
47
48
|
readonly show_attachment: boolean;
|
|
@@ -40,6 +40,7 @@ export type MentorSettingsPublic = {
|
|
|
40
40
|
readonly can_use_tools: boolean;
|
|
41
41
|
readonly llm_name: string;
|
|
42
42
|
readonly proactive_prompt: string;
|
|
43
|
+
readonly study_mode_prompt: string;
|
|
43
44
|
readonly disclaimer: string;
|
|
44
45
|
readonly enable_disclaimer: boolean;
|
|
45
46
|
readonly show_attachment: boolean;
|
|
@@ -46,6 +46,10 @@ export type PatchedMentorCreate = {
|
|
|
46
46
|
* Prompt template used to start a conversation with the user when greeting_type is proactive_prompt. This will be sent to the LLM so it can respond naturally
|
|
47
47
|
*/
|
|
48
48
|
proactive_prompt?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Prompt to be used to guide the user through their studies when study mode tool is enabled.
|
|
51
|
+
*/
|
|
52
|
+
study_mode_prompt?: string;
|
|
49
53
|
/**
|
|
50
54
|
* Disclaimer to be shown to the user when the mentor is used.
|
|
51
55
|
*/
|