@1interface/chat-core 0.4.5 → 0.5.0

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 CHANGED
@@ -589,6 +589,7 @@ export declare const clearMessageQueue: ActionCreatorWithoutPayload<"chat/clearM
589
589
  export declare interface ClientConfig {
590
590
  conversations: ConversationsConfig;
591
591
  voice_agent: VoiceAgentConfig;
592
+ stt: SttConfig;
592
593
  features?: string[];
593
594
  backend_version?: string;
594
595
  panel_switcher_enabled?: boolean;
@@ -1156,6 +1157,10 @@ export declare interface StreamMessageParams {
1156
1157
  body?: Record<string, unknown>;
1157
1158
  }
1158
1159
 
1160
+ export declare interface SttConfig {
1161
+ enabled: boolean;
1162
+ }
1163
+
1159
1164
  export declare const THINKING_MESSAGES: {
1160
1165
  readonly INITIAL: readonly ["Working on it", "Just a moment", "Reviewing your request", "Looking into that", "One moment, please", "Checking"];
1161
1166
  readonly LATER: readonly ["Almost ready", "Gathering the details", "Finishing up", "Getting things in order", "Preparing your answer", "Wrapping this up"];