Skip to Content
Enthusiast 1.6.0 is released 🎉
IntegrationsAnthropic

Anthropic Integration

Anthropic
poetry add enthusiast-model-anthropic

Use Anthropic's Claude models as the language model for your agents. Note: Anthropic does not provide an embeddings API, so this integration must be paired with another provider that supports embeddings (e.g. OpenAI).

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-anthropic

Set variables inside .env file.

ANTHROPIC_API_KEY=<value_here>

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

CATALOG_LANGUAGE_MODEL_PROVIDERS = [ ... "enthusiast_model_anthropic.AnthropicLanguageModelProvider", ]

Then, restart your server for the newly installed plugin to become available.

Finally, sign in to Enthusiast's Admin UI, go to the Integrations tab and configure the required credentials.

Last updated on