-
Notifications
You must be signed in to change notification settings - Fork 692
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update guide for applying and using keys in camel (#1176)
Co-authored-by: Wendong <w3ndong.fan@gmail.com>
- Loading branch information
1 parent
db1d9ef
commit 5a2e4e2
Showing
4 changed files
with
720 additions
and
634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# To use these environment variables: | ||
# 1. Populate the .env file with your API keys. | ||
# 2. Include the following code snippet in your Python script: | ||
# from dotenv import load_dotenv | ||
# import os | ||
# | ||
# load_dotenv() # Load environment variables from .env file | ||
|
||
#=========================================== | ||
# Models API | ||
#=========================================== | ||
|
||
# OpenAI API (https://platform.openai.com/signup) | ||
OPENAI_API_KEY="Fill your API key here" | ||
|
||
# Anthropic API (https://www.anthropic.com/) | ||
ANTHROPIC_API_KEY="Fill your API key here" | ||
|
||
# Groq API (https://groq.com/) | ||
GROQ_API_KEY="Fill your API key here" | ||
|
||
# Cohere API (https://cohere.ai/) | ||
COHERE_API_KEY="Fill your API key here" | ||
|
||
# Hugging Face API (https://huggingface.co/join) | ||
HF_TOKEN="Fill your API key here" | ||
|
||
# Azure OpenAI API (https://azure.microsoft.com/products/cognitive-services/openai-service/) | ||
AZURE_OPENAI_API_KEY="Fill your API key here" | ||
AZURE_API_VERSION="Fill your API Version here" | ||
AZURE_DEPLOYMENT_NAME="Fill your Deployment Name here" | ||
AZURE_OPENAI_BASE_URL="Fill your Base URL here" | ||
|
||
# Mistral API (https://mistral.ai/) | ||
MISTRAL_API_KEY="Fill your API key here" | ||
|
||
# Reka API (https://www.reka.ai/) | ||
REKA_API_KEY="Fill your API key here" | ||
|
||
# Zhipu AI API (https://www.zhipu.ai/) | ||
ZHIPUAI_API_KEY="Fill your API key here" | ||
ZHIPUAI_API_BASE_URL="Fill your Base URL here" | ||
|
||
# Qwen API (https://help.aliyun.com/document_detail/611472.html) | ||
QWEN_API_KEY="Fill your API key here" | ||
|
||
# LingYi API (https://platform.lingyiwanwu.com/apikeys) | ||
YI_API_KEY="Fill your API key here" | ||
|
||
#=========================================== | ||
# Tools & Services API | ||
#=========================================== | ||
|
||
# Google Search API (https://developers.google.com/custom-search/v1/overview) | ||
GOOGLE_API_KEY="Fill your API key here" | ||
SEARCH_ENGINE_ID="Fill your API key here" | ||
|
||
# OpenWeatherMap API (https://home.openweathermap.org/users/sign_up) | ||
OPENWEATHERMAP_API_KEY="Fill your API key here" | ||
|
||
# NVIDIA API (https://build.nvidia.com/explore/discover) | ||
NVIDIA_API_BASE_URL="Fill your API key here" | ||
NVIDIA_API_KEY="Fill your API key here" | ||
|
||
# Neo4j Database (https://neo4j.com/) | ||
NEO4J_URI="Fill your API key here" | ||
NEO4J_USERNAME="Fill your User Name here" | ||
NEO4J_PASSWORD="Fill your Password here" | ||
|
||
# Firecrawl API (https://www.firecrawl.dev/) | ||
FIRECRAWL_API_KEY="Fill your API key here" | ||
|
||
# AskNews API (https://docs.asknews.app/en/reference) | ||
ASKNEWS_CLIENT_ID="Fill your Client ID here" | ||
ASKNEWS_CLIENT_SECRET="Fill your Client Secret here" | ||
|
||
# Chunkr API (https://chunkr.ai/) | ||
CHUNKR_API_KEY="Fill your API key here" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,7 +125,6 @@ celerybeat.pid | |
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.