32 lines
849 B
Django/Jinja
32 lines
849 B
Django/Jinja
endpoints:
|
|
custom:
|
|
- name: "Ollama"
|
|
apiKey: "ollama"
|
|
baseURL: "http://ollama:11434/v1/chat/completions"
|
|
models:
|
|
default: [
|
|
"deepseek-r1",
|
|
"deepseek-coder-v2",
|
|
"deepseek-v3",
|
|
"llama3.3",
|
|
"phi4",
|
|
"qwen2.5",
|
|
"llama2",
|
|
"mistral",
|
|
"codellama",
|
|
"tinyllama",
|
|
"starcoder2",
|
|
"dolphin-mixtral",
|
|
"smollm2",
|
|
"orca-mini",
|
|
"mistral-openorca"
|
|
]
|
|
# fetching list of models is supported but the `name` field must start
|
|
# with `ollama` (case-insensitive), as it does in this example.
|
|
fetch: true
|
|
titleConvo: true
|
|
titleModel: "current_model"
|
|
summarize: false
|
|
summaryModel: "current_model"
|
|
forcePrompt: false
|
|
modelDisplayLabel: "Ollama" |