-
Notifications
You must be signed in to change notification settings - Fork 690
/
.env
78 lines (58 loc) · 2.5 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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"