Duplicated from huggingchat/chat-ui
fe2328e
1
2
3
4
5
6
7
8
import { writable } from "svelte/store"; export const ERROR_MESSAGES = { default: "Oops, something went wrong.", }; export const error = writable<string | null>(null);