UNPKG

mnemos-coder

Version:

CLI-based coding agent with graph-based execution loop and terminal UI

24 lines 707 B
/** * Model configuration with default Qwen endpoints */ export const DEFAULT_MODELS = { 'qwen3-30b': { name: 'Qwen3 30B', description: 'hosted by Dnotitia', base_url: 'http://211.115.208.244:38080/v1', api_key: 'seahorse', model: 'Qwen/Qwen3-30B-A3B', max_tokens: 16000, temperature: 0.1 }, 'qwen3-coder-30b': { name: 'Qwen3 Coder 30B', description: 'specialized coding model', base_url: 'http://35.187.241.215:8000/v1', api_key: 'your-openai-api-key', model: 'Qwen/Qwen3-Coder-30B-A3B-Instruct-FP8', max_tokens: 16000, temperature: 0.0 } }; //# sourceMappingURL=models.js.map