Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 1.25 KB

README.md

File metadata and controls

68 lines (43 loc) · 1.25 KB

Setup Your API Keys

OpenAI API Keys

For setting up OpenAI API keys, add your API key to your environment variables:

MacOS/Linux:

export OPENAI_API_KEY='your-api-key-here'

Windows:

setx OPENAI_API_KEY "your-api-key-here"

Visit Quickstart tutorial - OpenAI API for more details.

Claude API Keys

For setting up Claude API keys, add your API key to your environment variables:

MacOS/Linux:

export ANTHROPIC_API_KEY='your-api-key-here'

Windows:

setx ANTHROPIC_API_KEY "your-api-key-here"

Gemini API Keys

For setting up Gemini API keys, add your API key to your environment variables:

MacOS/Linux:

export GOOGLE_API_KEY='your-api-key-here'

Windows:

setx GOOGLE_API_KEY "your-api-key-here"

Together AI API Keys

For setting up Together AI API keys, add your API key to your environment variables:

MacOS/Linux:

export TOGETHER_API_KEY='your-api-key-here'

Windows:

setx TOGETHER_API_KEY "your-api-key-here"

Make sure to replace your-api-key-here with your actual API keys. This ensures that the necessary APIs are accessible for the features you intend to use in the repository.