-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
40 lines (36 loc) · 1.6 KB
/
Copy pathconfig.example.yaml
File metadata and controls
40 lines (36 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# MuseWeb Configuration
server:
address: "127.0.0.1"
port: "8000"
prompts_dir: "./prompts"
# Enable debug mode to see detailed HTTP request/response logs (true/false)
debug: false
model:
# The AI backend to use ('ollama' or 'openai')
backend: "openai"
# The model name to use for the selected backend
name: "gpt-4.1-nano"
# List of model name patterns that support reasoning/thinking tags
# These patterns are checked in order (first match wins)
reasoning_models:
- "deepseek-r1-distill" # DeepSeek R1 distilled models (most specific first)
- "mercury-coder" # Inception Labs Mercury Coder models
- "mercury" # Inception Labs Mercury models
- "sonar-reasoning-pro" # Perplexity Sonar reasoning pro models
- "sonar-reasoning" # Perplexity Sonar reasoning models
- "gemini-2.5-flash-lite-preview-06-17" # Specific Gemini model
- "gemini-2.5-flash" # Gemini 2.5 Flash models
- "r1-1776" # OpenAI R1-1776 models
- "qwen3" # Qwen3 models (specific)
- "deepseek" # DeepSeek models (general, after specific)
- "qwen" # Qwen models (general, after specific)
openai:
# Your OpenAI API key. Can be left blank if using the OPENAI_API_KEY environment variable.
api_key: ""
# The base URL for the OpenAI API. Useful for local models like LM Studio.
api_base: "http://api.openai.com/v1"
ollama:
# Your Ollama API key. Can be left blank if using the OLLAMA_API_KEY environment variable.
api_key: ""
# Base URL for your local Ollama server.
api_base: "http://localhost:11434"