Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
abidlabs committed Jan 22, 2025
1 parent 00f3622 commit 16770c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/multimodaltextbox/shared/MultimodalTextbox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@
export let file_count: "single" | "multiple" | "directory" = "multiple";
export let max_plain_text_length = 1000;
export let waveform_settings: Record<string, any>;
export let waveform_options: WaveformOptions = {};
export let waveform_options: WaveformOptions = {
show_recording_waveform: true,
show_controls: false
};
export let sources: ["microphone" | "upload"] = ["upload"];
export let active_source: "microphone" | null = null;
let upload_component: Upload;
Expand Down

0 comments on commit 16770c2

Please sign in to comment.