Skip to content

How to Authenticate with Your LLM

LLM Prerequisites

To access LLM models through Eidolon, you may need to:

  • Create an account with the LLM provider
  • Fund the account
  • Acquire an API key

Note that each provider has its own terms and conditions regarding account payment and usage pricing.

Use the table below to get started with popular LLM providers.

LLMProvider DocumentationAPI_Key attribute
ClaudeAnthropic API Keys, billing and usageANTHROPIC_API_KEY
MistralMistral API Keys, billing and usageMISTRAL_API_KEY
OllamaOllama Githubn/a β€” you run Ollama locally
ChatGPTOpenAI API Keys, billing and usageOPENAI_API_KEY

πŸ‘‰ Hot tip! Some LLM providers offer evaluation credits. It’s a great way to get started and save money.

Prompts During Installations

If you are prompted to enter an API key during an installation process, it will automatically be added to the Eidolon .env file.

To see your Eidolon environment settings:

Terminal window
cd <Eidolon application root directory>
cat .env

Setting New LLM API Keys

If you want to use a new LLM, you may need to enter an API Key to the .env file. See LLM Prerequisites to learn about authenticating with various providers.

Example .env file:

OPENAI_API_KEY=youropenaiapikey
ANTHROPIC_API_KEY=youranthropicapikey
MISTRAL_API_KEY=yourmistralapikey

Restart Eidolon. Agents can now authenticate with your preferred LLMs.

Note: if the .env file does not exist in your application root directory, create it as a plain text file.