diff --git a/frontend/src/lib/ChatApp.svelte b/frontend/src/lib/ChatApp.svelte index 0e88a4e..547211b 100644 --- a/frontend/src/lib/ChatApp.svelte +++ b/frontend/src/lib/ChatApp.svelte @@ -4,7 +4,9 @@ import Avatar from "./Avatar.svelte"; import { onMount, afterUpdate } from "svelte"; - let messages: ({ type: string; text: string } | { text: { submit: string }; type: string })[] = []; + let messages: ({ type: string; text: string } | { text: { submit: string }; type: string })[] = [ + { type: "bot", text: "Zdravo! Ja sam Ramiza. Volim pričati i znam mnoge stvari. Pitaj me nešto!" } +]; let sessionToken = ""; const backendUrl = import.meta.env.VITE_BACKEND_URL; let message = "";