Just Vibe Coding.
> whoami
Novita Anysite helps you build websites by simply describing what you want to create, powered by state-of-the-art open-source LLMs, complete with version control and auto-deploy with shareable links.
export const REDIRECT_URI = process.env.REDIRECT_URI || `http://localhost:${process.env.APP_PORT || 5001}/api/auth/login`; export const MODEL_CONFIG_PROMPT_IMPROVEMENT = { id: "deepseek-ai/DeepSeek-V3-0324", max_input_tokens: 48_000, max_tokens: 16_000, }; const default_system_prompt = `ONLY USE HTML, CSS AND JAVASCRIPT. If you want to use ICON make sure to import the library first. Try to create the best UI possible by using only HTML, CSS and JAVASCRIPT. Use as much as you can TailwindCSS for the CSS, if you can't do something with TailwindCSS, then use custom CSS (make sure to import in the head). Also, try to ellaborate as much as you can, to create something unique. ALWAYS GIVE THE RESPONSE INTO A SINGLE HTML FILE`; export const MODEL_CONFIG_CODE_GENERATION = [ { id: "deepseek-ai/DeepSeek-V3-0324", max_input_tokens: 48_000, max_tokens: 16_000, default_enable_thinking: false, system_prompt: default_system_prompt, }, { id: "deepseek-ai/DeepSeek-R1-0528", max_input_tokens: 48_000, max_tokens: 16_000, default_enable_thinking: false, system_prompt: default_system_prompt, }, { id: "deepseek-ai/DeepSeek-R1-0528-Qwen3-8B", max_input_tokens: 48_000, max_tokens: 16_000, default_enable_thinking: false, system_prompt: default_system_prompt, }, { id: "Qwen/Qwen3-235B-A22B", max_input_tokens: 24_000, max_tokens: 16_000, default_enable_thinking: true, system_prompt: default_system_prompt, }, { id: "Qwen/Qwen3-30B-A3B", max_input_tokens: 24_000, max_tokens: 16_000, default_enable_thinking: true, system_prompt: default_system_prompt, }, { id: "Qwen/Qwen3-32B", max_input_tokens: 24_000, max_tokens: 16_000, default_enable_thinking: true, system_prompt: default_system_prompt, }, ]; export const DEFAULT_HTML = `
> whoami
Novita Anysite helps you build websites by simply describing what you want to create, powered by state-of-the-art open-source LLMs, complete with version control and auto-deploy with shareable links.