@iblai/iblai-api 4.272.0-ai → 4.273.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/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/Mentor.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/PatchedMentorSettings.d.ts +1 -0
- package/package.json +1 -1
- package/sdk_schema.yml +23 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/Mentor.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/PatchedMentorSettings.ts +1 -0
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -61,6 +61,10 @@ export type Mentor = {
|
|
|
61
61
|
* * `google` - Google
|
|
62
62
|
*/
|
|
63
63
|
voice_provider?: VoiceProviderD5aEnum;
|
|
64
|
+
/**
|
|
65
|
+
* Free-form instructions describing the desired voice and reading style (tone, pace, emotion, accent) for TTS synthesis. Passed to providers that support style prompts: OpenAI as the speech ``instructions`` and Google as the synthesis ``prompt``. Ignored by providers/voices that don't support styling.
|
|
66
|
+
*/
|
|
67
|
+
voice_instructions?: string;
|
|
64
68
|
categories: Array<MentorCategory>;
|
|
65
69
|
types: Array<MentorType>;
|
|
66
70
|
/**
|
|
@@ -67,6 +67,7 @@ export type MentorFromTemplateWithSettingRequest = {
|
|
|
67
67
|
google_voice?: number;
|
|
68
68
|
openai_voice?: number;
|
|
69
69
|
voice_provider?: MentorFromTemplateWithSettingRequestVoiceProviderEnum;
|
|
70
|
+
voice_instructions?: string;
|
|
70
71
|
enable_suggested_prompts?: boolean | null;
|
|
71
72
|
enable_guided_prompts?: boolean | null;
|
|
72
73
|
save_flagged_prompts?: boolean | null;
|
|
@@ -42,6 +42,7 @@ export type MentorSettings = {
|
|
|
42
42
|
readonly llm_name: string;
|
|
43
43
|
readonly proactive_prompt: string;
|
|
44
44
|
readonly study_mode_prompt: string;
|
|
45
|
+
readonly voice_instructions: 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 llm_name: string;
|
|
41
41
|
readonly proactive_prompt: string;
|
|
42
42
|
readonly study_mode_prompt: string;
|
|
43
|
+
readonly voice_instructions: string;
|
|
43
44
|
readonly disclaimer: string;
|
|
44
45
|
readonly enable_disclaimer: boolean;
|
|
45
46
|
readonly show_attachment: boolean;
|
|
@@ -77,6 +77,7 @@ export type MentorSettingsRequest = {
|
|
|
77
77
|
google_voice?: number;
|
|
78
78
|
openai_voice?: number;
|
|
79
79
|
voice_provider?: MentorSettingsRequestVoiceProviderEnum;
|
|
80
|
+
voice_instructions?: string;
|
|
80
81
|
guided_prompt_instructions?: string | null;
|
|
81
82
|
safety_system_prompt?: string;
|
|
82
83
|
safety_response?: string;
|
|
@@ -42,6 +42,7 @@ export type PatchedMentorSettings = {
|
|
|
42
42
|
readonly llm_name?: string;
|
|
43
43
|
readonly proactive_prompt?: string;
|
|
44
44
|
readonly study_mode_prompt?: string;
|
|
45
|
+
readonly voice_instructions?: string;
|
|
45
46
|
readonly disclaimer?: string;
|
|
46
47
|
readonly enable_disclaimer?: boolean;
|
|
47
48
|
readonly show_attachment?: boolean;
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.273.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/access-check/{item_type}/{item_id}/:
|
|
@@ -97222,6 +97222,13 @@ components:
|
|
|
97222
97222
|
* `browser` - Browser
|
|
97223
97223
|
* `openai` - OpenAI
|
|
97224
97224
|
* `google` - Google
|
|
97225
|
+
voice_instructions:
|
|
97226
|
+
type: string
|
|
97227
|
+
description: 'Free-form instructions describing the desired voice and reading
|
|
97228
|
+
style (tone, pace, emotion, accent) for TTS synthesis. Passed to providers
|
|
97229
|
+
that support style prompts: OpenAI as the speech ``instructions`` and
|
|
97230
|
+
Google as the synthesis ``prompt``. Ignored by providers/voices that don''t
|
|
97231
|
+
support styling.'
|
|
97225
97232
|
categories:
|
|
97226
97233
|
type: array
|
|
97227
97234
|
items:
|
|
@@ -98232,6 +98239,8 @@ components:
|
|
|
98232
98239
|
type: integer
|
|
98233
98240
|
voice_provider:
|
|
98234
98241
|
$ref: '#/components/schemas/MentorFromTemplateWithSettingRequestVoiceProviderEnum'
|
|
98242
|
+
voice_instructions:
|
|
98243
|
+
type: string
|
|
98235
98244
|
enable_suggested_prompts:
|
|
98236
98245
|
type: boolean
|
|
98237
98246
|
nullable: true
|
|
@@ -98633,6 +98642,9 @@ components:
|
|
|
98633
98642
|
study_mode_prompt:
|
|
98634
98643
|
type: string
|
|
98635
98644
|
readOnly: true
|
|
98645
|
+
voice_instructions:
|
|
98646
|
+
type: string
|
|
98647
|
+
readOnly: true
|
|
98636
98648
|
disclaimer:
|
|
98637
98649
|
type: string
|
|
98638
98650
|
readOnly: true
|
|
@@ -98956,6 +98968,7 @@ components:
|
|
|
98956
98968
|
- template_mentor
|
|
98957
98969
|
- types
|
|
98958
98970
|
- updated_at
|
|
98971
|
+
- voice_instructions
|
|
98959
98972
|
- voice_provider
|
|
98960
98973
|
MentorSettingsPublic:
|
|
98961
98974
|
type: object
|
|
@@ -99058,6 +99071,9 @@ components:
|
|
|
99058
99071
|
study_mode_prompt:
|
|
99059
99072
|
type: string
|
|
99060
99073
|
readOnly: true
|
|
99074
|
+
voice_instructions:
|
|
99075
|
+
type: string
|
|
99076
|
+
readOnly: true
|
|
99061
99077
|
disclaimer:
|
|
99062
99078
|
type: string
|
|
99063
99079
|
readOnly: true
|
|
@@ -99269,6 +99285,7 @@ components:
|
|
|
99269
99285
|
- suggested_prompts
|
|
99270
99286
|
- types
|
|
99271
99287
|
- updated_at
|
|
99288
|
+
- voice_instructions
|
|
99272
99289
|
MentorSettingsRequest:
|
|
99273
99290
|
type: object
|
|
99274
99291
|
properties:
|
|
@@ -99436,6 +99453,8 @@ components:
|
|
|
99436
99453
|
type: integer
|
|
99437
99454
|
voice_provider:
|
|
99438
99455
|
$ref: '#/components/schemas/MentorSettingsRequestVoiceProviderEnum'
|
|
99456
|
+
voice_instructions:
|
|
99457
|
+
type: string
|
|
99439
99458
|
guided_prompt_instructions:
|
|
99440
99459
|
type: string
|
|
99441
99460
|
nullable: true
|
|
@@ -105123,6 +105142,9 @@ components:
|
|
|
105123
105142
|
study_mode_prompt:
|
|
105124
105143
|
type: string
|
|
105125
105144
|
readOnly: true
|
|
105145
|
+
voice_instructions:
|
|
105146
|
+
type: string
|
|
105147
|
+
readOnly: true
|
|
105126
105148
|
disclaimer:
|
|
105127
105149
|
type: string
|
|
105128
105150
|
readOnly: true
|
package/src/core/OpenAPI.ts
CHANGED
package/src/models/Mentor.ts
CHANGED
|
@@ -65,6 +65,10 @@ export type Mentor = {
|
|
|
65
65
|
* * `google` - Google
|
|
66
66
|
*/
|
|
67
67
|
voice_provider?: VoiceProviderD5aEnum;
|
|
68
|
+
/**
|
|
69
|
+
* Free-form instructions describing the desired voice and reading style (tone, pace, emotion, accent) for TTS synthesis. Passed to providers that support style prompts: OpenAI as the speech ``instructions`` and Google as the synthesis ``prompt``. Ignored by providers/voices that don't support styling.
|
|
70
|
+
*/
|
|
71
|
+
voice_instructions?: string;
|
|
68
72
|
categories: Array<MentorCategory>;
|
|
69
73
|
types: Array<MentorType>;
|
|
70
74
|
/**
|
|
@@ -71,6 +71,7 @@ export type MentorFromTemplateWithSettingRequest = {
|
|
|
71
71
|
google_voice?: number;
|
|
72
72
|
openai_voice?: number;
|
|
73
73
|
voice_provider?: MentorFromTemplateWithSettingRequestVoiceProviderEnum;
|
|
74
|
+
voice_instructions?: string;
|
|
74
75
|
enable_suggested_prompts?: boolean | null;
|
|
75
76
|
enable_guided_prompts?: boolean | null;
|
|
76
77
|
save_flagged_prompts?: boolean | null;
|
|
@@ -46,6 +46,7 @@ export type MentorSettings = {
|
|
|
46
46
|
readonly llm_name: string;
|
|
47
47
|
readonly proactive_prompt: string;
|
|
48
48
|
readonly study_mode_prompt: string;
|
|
49
|
+
readonly voice_instructions: string;
|
|
49
50
|
readonly disclaimer: string;
|
|
50
51
|
readonly enable_disclaimer: boolean;
|
|
51
52
|
readonly show_attachment: boolean;
|
|
@@ -44,6 +44,7 @@ export type MentorSettingsPublic = {
|
|
|
44
44
|
readonly llm_name: string;
|
|
45
45
|
readonly proactive_prompt: string;
|
|
46
46
|
readonly study_mode_prompt: string;
|
|
47
|
+
readonly voice_instructions: string;
|
|
47
48
|
readonly disclaimer: string;
|
|
48
49
|
readonly enable_disclaimer: boolean;
|
|
49
50
|
readonly show_attachment: boolean;
|
|
@@ -81,6 +81,7 @@ export type MentorSettingsRequest = {
|
|
|
81
81
|
google_voice?: number;
|
|
82
82
|
openai_voice?: number;
|
|
83
83
|
voice_provider?: MentorSettingsRequestVoiceProviderEnum;
|
|
84
|
+
voice_instructions?: string;
|
|
84
85
|
guided_prompt_instructions?: string | null;
|
|
85
86
|
safety_system_prompt?: string;
|
|
86
87
|
safety_response?: string;
|
|
@@ -46,6 +46,7 @@ export type PatchedMentorSettings = {
|
|
|
46
46
|
readonly llm_name?: string;
|
|
47
47
|
readonly proactive_prompt?: string;
|
|
48
48
|
readonly study_mode_prompt?: string;
|
|
49
|
+
readonly voice_instructions?: string;
|
|
49
50
|
readonly disclaimer?: string;
|
|
50
51
|
readonly enable_disclaimer?: boolean;
|
|
51
52
|
readonly show_attachment?: boolean;
|