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-R1-0528", max_input_tokens: 48_000, max_tokens: 16_000, default_enable_thinking: true, system_prompt: default_system_prompt, }, { 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: "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 = ` Novita AnySite

Welcome to Novita AnySite

This is a demo that shows how to use Novita LLM to build a website for you. Simply use the prompt input below to describe the website you want to create, and Novita Anysite will generate it for you!

Example prompt:

"Build a snake game"

`;