@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.
@@ -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
  */
@@ -33,6 +33,7 @@ export type MentorFromTemplateWithSettingRequest = {
33
33
  seo_tags?: any;
34
34
  marketing_conversations?: any;
35
35
  proactive_prompt?: string;
36
+ study_mode_prompt?: string;
36
37
  disclaimer?: string;
37
38
  enable_disclaimer?: boolean;
38
39
  show_attachment?: boolean;
@@ -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;
@@ -37,6 +37,7 @@ export type MentorSettingsRequest = {
37
37
  tool_slugs?: Array<string>;
38
38
  llm_temperature?: number;
39
39
  proactive_prompt?: string;
40
+ study_mode_prompt?: string;
40
41
  disclaimer?: string;
41
42
  placeholder_prompt?: string;
42
43
  moderation_system_prompt?: string;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.104.0-ai",
3
+ "version": "4.105.0-ai",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
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.
@@ -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
  */
@@ -37,6 +37,7 @@ export type MentorFromTemplateWithSettingRequest = {
37
37
  seo_tags?: any;
38
38
  marketing_conversations?: any;
39
39
  proactive_prompt?: string;
40
+ study_mode_prompt?: string;
40
41
  disclaimer?: string;
41
42
  enable_disclaimer?: boolean;
42
43
  show_attachment?: boolean;
@@ -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;
@@ -41,6 +41,7 @@ export type MentorSettingsRequest = {
41
41
  tool_slugs?: Array<string>;
42
42
  llm_temperature?: number;
43
43
  proactive_prompt?: string;
44
+ study_mode_prompt?: string;
44
45
  disclaimer?: string;
45
46
  placeholder_prompt?: string;
46
47
  moderation_system_prompt?: string;
@@ -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
  */