| export const MAGNUS_VERSION = "251029"; | |
| // --- LLM SERVER CONFIG --- | |
| // Point this to your local llama-server instance | |
| export const LLM_SERVER_BASE_URL = "http://127.0.0.1:8080"; | |
| export const API_URL = `${LLM_SERVER_BASE_URL}/v1/chat/completions`; | |
| export const CACHE_TTL = 10 * 60 * 1000; // 10 minutes in milliseconds | |
| export const GGUF = "magnus-one.gguf"; | |
| export const MEMORY_LIMIT = 5; // Increase on better device | |
| export const USER_ALIAS = "user"; // Change this to your name | |
| export const BRAVE_API_KEY = "YOUR_API_KEY_HERE"; // REQUIRED | |
| export const GOOGLE_API_KEY = "YOUR_API_KEY_HERE"; // REQUIRED | |
| export const GOOGLE_CX_ID = "YOUR_API_KEY_HERE"; // REQUIRED | |