cogito-client 1.0.53 → 1.0.55
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 +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -33,6 +33,10 @@ export declare interface CogitoAssistantMessage {
|
|
|
33
33
|
id?: string;
|
|
34
34
|
date?: string;
|
|
35
35
|
content: string;
|
|
36
|
+
/**
|
|
37
|
+
* The target user name for this assistant message
|
|
38
|
+
*/
|
|
39
|
+
userName?: string;
|
|
36
40
|
}
|
|
37
41
|
|
|
38
42
|
export declare interface CogitoAudioSurface {
|
|
@@ -190,6 +194,9 @@ export declare interface CogitoConfig {
|
|
|
190
194
|
model?: string;
|
|
191
195
|
voice?: string;
|
|
192
196
|
language?: string;
|
|
197
|
+
pronunciation?: {
|
|
198
|
+
[k: string]: string;
|
|
199
|
+
};
|
|
193
200
|
[k: string]: unknown;
|
|
194
201
|
};
|
|
195
202
|
llm?: {
|