Merge branch 'upstream' into concedo_experimental

# Conflicts:
#	examples/model-conversion/scripts/causal/run-org-model.py
#	tests/test-backend-ops.cpp
This commit is contained in:
Concedo
2025-10-25 16:30:57 +08:00
6 changed files with 120 additions and 6 deletions
Binary file not shown.
@@ -2,6 +2,9 @@
import { ChatScreen } from '$lib/components/app';
import { chatStore, isInitialized } from '$lib/stores/chat.svelte';
import { onMount } from 'svelte';
import { page } from '$app/state';
let qParam = $derived(page.url.searchParams.get('q'));
onMount(async () => {
if (!isInitialized) {
@@ -9,6 +12,11 @@
}
chatStore.clearActiveConversation();
if (qParam !== null) {
await chatStore.createConversation();
await chatStore.sendMessage(qParam);
}
});
</script>