Cleaned up repo with old files, and ammended logo size in sidebar/mobile overview

This commit is contained in:
2026-02-20 10:53:40 +00:00
parent d478276c3b
commit c651f0ed44
230 changed files with 108 additions and 25321 deletions
+2 -2
View File
@@ -5,14 +5,14 @@ export interface ChatMessage {
content: string
}
export const LLM_MODEL = 'google/gemini-3-flash-preview'
const LLM_MODEL = 'google/gemini-3-flash-preview'
export const LLM_DISPLAY_NAME = 'Gemini 3 Flash'
export function isLLMAvailable(): boolean {
return true
}
export function buildSystemPrompt(): string {
function buildSystemPrompt(): string {
return LLM_SYSTEM_PROMPT
}