I’m following the self hosted startup here: GitHub - n8n-io/self-hosted-ai-starter-kit: The Self-hosted AI Starter Kit is an open-source template that quickly sets up a local AI environment. Curated by n8n, it provides essential tools for creating secure, self-hosted AI workflows.
When I add an Ollama Chat Model node it appears to be able to successfully connect to the ollama instance. However, it only displays one model in the drop down. Though I have several models installed.
The call to http://localhost:5678/rest/dynamic-node-parameters/options returns:
{"data":[{"name":"llama3.2:latest","value":"llama3.2:latest"}]}
Though the call to the ollama API returns three models: http://localhost:11434/api/tags
{
"models": [
{
"name": "llama3.2:latest",
"model": "llama3.2:latest",
"modified_at": "2024-11-29T04:42:09.592648665Z",
"size": 2019393189,
"digest": "a80c4f17acd55265feec403c7aef86be0c25983ab279d83f3bcd3abbcb5b8b72",
"details": {
"parent_model": "",
"format": "gguf",
"family": "llama",
"families": [
"llama"
],
"parameter_size": "3.2B",
"quantization_level": "Q4_K_M"
}
},
{
"name": "nomic-embed-text:latest",
"model": "nomic-embed-text:latest",
"modified_at": "2024-11-29T04:42:09.972708857Z",
"size": 274302450,
"digest": "0a109f422b47e3a30ba2b10eca18548e944e8a23073ee3f3e947efcf3c45e59f",
"details": {
"parent_model": "",
"format": "gguf",
"family": "nomic-bert",
"families": [
"nomic-bert"
],
"parameter_size": "137M",
"quantization_level": "F16"
}
},
{
"name": "mistral:latest",
"model": "mistral:latest",
"modified_at": "2024-11-28T23:51:11.525340501Z",
"size": 4113301824,
"digest": "f974a74358d62a017b37c6f424fcdf2744ca02926c4f952513ddf474b2fa5091",
"details": {
"parent_model": "",
"format": "gguf",
"family": "llama",
"families": [
"llama"
],
"parameter_size": "7.2B",
"quantization_level": "Q4_0"
}
}
]
}
How do I get these other models to show up?
No error is displayed.
Please share your workflow
Share the output returned by the last node
Information on your n8n setup
- 1.69.2
- Postgres
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Docker
- Windows 11 Host