9 lines
234 B
Python
9 lines
234 B
Python
# Ollama Model Configuration
|
|
config_list = [
|
|
{
|
|
"model": "qwen3:4b", # Make sure this model is pulled in Ollama
|
|
"api_type": "ollama",
|
|
"client_host": "http://127.0.0.1:11434", # Ollama host
|
|
}
|
|
]
|