@kivox/client 0.1.0-beta.50 → 0.1.0-beta.52
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.d.ts +3 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1002,10 +1002,7 @@ interface components {
|
|
|
1002
1002
|
language?: string
|
|
1003
1003
|
/** @example UTC */
|
|
1004
1004
|
timezone?: string
|
|
1005
|
-
|
|
1006
|
-
max_session_duration_minutes?: number
|
|
1007
|
-
max_silence_timeout_seconds?: number
|
|
1008
|
-
allow_interruptions?: boolean
|
|
1005
|
+
system_prompt?: string
|
|
1009
1006
|
model_llm?: string
|
|
1010
1007
|
}
|
|
1011
1008
|
AgentSecret: {
|
|
@@ -3298,6 +3295,8 @@ interface operations {
|
|
|
3298
3295
|
requestBody: {
|
|
3299
3296
|
content: {
|
|
3300
3297
|
"application/json": {
|
|
3298
|
+
/** @description The name of the model to use. If not provided, the agent's default model will be used. */
|
|
3299
|
+
model?: string
|
|
3301
3300
|
/** @description The user's message text. */
|
|
3302
3301
|
content: string
|
|
3303
3302
|
}
|