
Google Gemini
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-google
Then, register the integration in your config/settings_override.py.
CATALOG_LANGUAGE_MODEL_PROVIDERS = {
...
"Google Gemini": "enthusiast_model_google.GoogleLanguageModelProvider",
}
CATALOG_EMBEDDING_PROVIDERS = {
...
"Google Gemini": "enthusiast_model_google.GoogleEmbeddingProvider",
}
Last updated on