@iblai/iblai-api 4.219.0-ai → 4.221.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/MentorSettings.d.ts +1 -0
- package/dist/types/models/MentorSettingsPublic.d.ts +1 -0
- package/dist/types/models/PatchedMentorSettings.d.ts +1 -0
- package/package.json +1 -1
- package/sdk_schema.yml +12 -1
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/MentorSettings.ts +1 -0
- package/src/models/MentorSettingsPublic.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
|
@@ -85,6 +85,7 @@ export type MentorSettings = {
|
|
|
85
85
|
readonly platform_key: string;
|
|
86
86
|
readonly llm_config: any;
|
|
87
87
|
readonly llm_provider: string;
|
|
88
|
+
readonly enable_voice_call: boolean;
|
|
88
89
|
readonly system_prompt: string;
|
|
89
90
|
readonly llm_temperature: number;
|
|
90
91
|
readonly safety_system_prompt: string;
|
|
@@ -85,6 +85,7 @@ export type PatchedMentorSettings = {
|
|
|
85
85
|
readonly platform_key?: string;
|
|
86
86
|
readonly llm_config?: any;
|
|
87
87
|
readonly llm_provider?: string;
|
|
88
|
+
readonly enable_voice_call?: boolean;
|
|
88
89
|
readonly system_prompt?: string;
|
|
89
90
|
readonly llm_temperature?: number;
|
|
90
91
|
readonly safety_system_prompt?: string;
|
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.221.0-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/access-check/{item_type}/{item_id}/:
|
|
@@ -87900,6 +87900,9 @@ components:
|
|
|
87900
87900
|
llm_provider:
|
|
87901
87901
|
type: string
|
|
87902
87902
|
readOnly: true
|
|
87903
|
+
enable_voice_call:
|
|
87904
|
+
type: boolean
|
|
87905
|
+
readOnly: true
|
|
87903
87906
|
system_prompt:
|
|
87904
87907
|
type: string
|
|
87905
87908
|
readOnly: true
|
|
@@ -88017,6 +88020,7 @@ components:
|
|
|
88017
88020
|
- enable_spaced_repetition
|
|
88018
88021
|
- enable_suggested_prompts
|
|
88019
88022
|
- enable_total_grounding
|
|
88023
|
+
- enable_voice_call
|
|
88020
88024
|
- forkable
|
|
88021
88025
|
- forkable_with_training_data
|
|
88022
88026
|
- google_voice
|
|
@@ -88307,6 +88311,9 @@ components:
|
|
|
88307
88311
|
llm_provider:
|
|
88308
88312
|
type: string
|
|
88309
88313
|
readOnly: true
|
|
88314
|
+
enable_voice_call:
|
|
88315
|
+
type: boolean
|
|
88316
|
+
readOnly: true
|
|
88310
88317
|
required:
|
|
88311
88318
|
- allow_anonymous
|
|
88312
88319
|
- can_use_tools
|
|
@@ -88335,6 +88342,7 @@ components:
|
|
|
88335
88342
|
- enable_safety_system
|
|
88336
88343
|
- enable_socratic_mode
|
|
88337
88344
|
- enable_spaced_repetition
|
|
88345
|
+
- enable_voice_call
|
|
88338
88346
|
- forkable
|
|
88339
88347
|
- forkable_with_training_data
|
|
88340
88348
|
- greeting_method
|
|
@@ -93361,6 +93369,9 @@ components:
|
|
|
93361
93369
|
llm_provider:
|
|
93362
93370
|
type: string
|
|
93363
93371
|
readOnly: true
|
|
93372
|
+
enable_voice_call:
|
|
93373
|
+
type: boolean
|
|
93374
|
+
readOnly: true
|
|
93364
93375
|
system_prompt:
|
|
93365
93376
|
type: string
|
|
93366
93377
|
readOnly: true
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -89,6 +89,7 @@ export type MentorSettings = {
|
|
|
89
89
|
readonly platform_key: string;
|
|
90
90
|
readonly llm_config: any;
|
|
91
91
|
readonly llm_provider: string;
|
|
92
|
+
readonly enable_voice_call: boolean;
|
|
92
93
|
readonly system_prompt: string;
|
|
93
94
|
readonly llm_temperature: number;
|
|
94
95
|
readonly safety_system_prompt: string;
|
|
@@ -89,6 +89,7 @@ export type PatchedMentorSettings = {
|
|
|
89
89
|
readonly platform_key?: string;
|
|
90
90
|
readonly llm_config?: any;
|
|
91
91
|
readonly llm_provider?: string;
|
|
92
|
+
readonly enable_voice_call?: boolean;
|
|
92
93
|
readonly system_prompt?: string;
|
|
93
94
|
readonly llm_temperature?: number;
|
|
94
95
|
readonly safety_system_prompt?: string;
|