Skip to Content
Enthusiast 1.3.0 is released 🎉
Ollama

Ollama

Installation

Run the following command inside your application directory.
If you're using Enthusiast Starter, that's inside enthusiast-starter/src/

poetry add enthusiast-model-ollama

Then, register the integration in your config/settings_override.py.

CATALOG_LANGUAGE_MODEL_PROVIDERS = { ... "Ollama": "enthusiast_model_ollama.OllamaLanguageModelProvider", }
CATALOG_EMBEDDING_PROVIDERS = { ... "Ollama": "enthusiast_model_ollama.OllamaEmbeddingProvider", }
Last updated on