@amigo-ai/platform-sdk 0.5.8 → 0.5.9
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.
|
@@ -15617,6 +15617,8 @@ export interface components {
|
|
|
15617
15617
|
sync_error?: string | null;
|
|
15618
15618
|
/** Synced At */
|
|
15619
15619
|
synced_at?: string | null;
|
|
15620
|
+
/** Workspace Id */
|
|
15621
|
+
workspace_id?: string | null;
|
|
15620
15622
|
};
|
|
15621
15623
|
/** MemoryAnalyticsResponse */
|
|
15622
15624
|
MemoryAnalyticsResponse: {
|
|
@@ -22754,6 +22756,12 @@ export interface components {
|
|
|
22754
22756
|
tone?: string | null;
|
|
22755
22757
|
/** Transcript Correction Enabled */
|
|
22756
22758
|
transcript_correction_enabled?: boolean | null;
|
|
22759
|
+
/** Tts Config */
|
|
22760
|
+
tts_config?: {
|
|
22761
|
+
[key: string]: unknown;
|
|
22762
|
+
} | null;
|
|
22763
|
+
/** Tts Provider */
|
|
22764
|
+
tts_provider?: ("cartesia" | "elevenlabs" | "groq") | null;
|
|
22757
22765
|
/** Voice Id */
|
|
22758
22766
|
voice_id?: string | null;
|
|
22759
22767
|
/** Volume */
|
|
@@ -22782,6 +22790,12 @@ export interface components {
|
|
|
22782
22790
|
tone: string | null;
|
|
22783
22791
|
/** Transcript Correction Enabled */
|
|
22784
22792
|
transcript_correction_enabled: boolean;
|
|
22793
|
+
/** Tts Config */
|
|
22794
|
+
tts_config: {
|
|
22795
|
+
[key: string]: unknown;
|
|
22796
|
+
} | null;
|
|
22797
|
+
/** Tts Provider */
|
|
22798
|
+
tts_provider: ("cartesia" | "elevenlabs" | "groq") | null;
|
|
22785
22799
|
/** Voice Id */
|
|
22786
22800
|
voice_id: string | null;
|
|
22787
22801
|
/** Volume */
|