export const COOKIE_KEYS = {
THEME: "ai-samples:theme",
};
export const SOTRAGE_KEYS = {};
export const THEME = {
LIGHT: "light",
DARK: "dark",
SYSTEM: "system",
};
export const MESSAGE_ROLE = {
USER: "user",
ASSISTANT: "assistant",
TOOL: "tool",
};
export const MESSAGE_STATUS = {
READY: "ready",
LOADING: "loading",
};
export const USER_COLOR_POOL = [
"#78a9ff",
"#4589ff",
"#0f62fe",
"#42be65",
"#24a148",
"#198038",
"#08bdba",
"#009d9a",
"#007d79",
"#be95ff",
"#a56eff",
"#8a3ffc",
"#ff7eb6",
"#ee5396",
"#d02670",
"#ff8389",
"#fa4d56",
"#da1e28",
"#ff832b",
"#eb6200",
"#ba4e00",
"#d2a106",
"#b28600",
"#8e6a00",
];