diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 31a076b7e..efd068430 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -311,6 +311,10 @@ } } + if ($page.url.searchParams.get('call') === 'true') { + showCallOverlay.set(true); + } + selectedModels = selectedModels.map((modelId) => $models.map((m) => m.id).includes(modelId) ? modelId : '' );