-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexample.env
27 lines (21 loc) · 1.15 KB
/
example.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
# example.env - sample configuration file for rbot.py and rbot-streamlit.py
# Rename this file to .env and replace sample values with your actual data.
# Remote Hosted Large Language Model (LLM) API keys
# These keys are used to authenticate with the respective APIs.
# OpenAI API Key
# Please replace <Your-OpenAI-API-Key> with your actual OpenAI API Key.
OPENAI_API_KEY="<Your-OpenAI-API-Key>"
# Anthropic API Key
# Please replace <Your-Anthropic-API-Key> with your actual Anthropic API Key.
ANTHROPIC_API_KEY="<Your-Anthropic-API-Key>"
# Google API Key
# Please replace <Your-Google-API-Key> with your actual Google API Key.
# https://aistudio.google.com/app/apikey
GOOGLE_API_KEY="<Your-Google-AI-API-Key>"
# Pinecone is a vector database and search engine that Ragbot.AI uses to store vector embeddings
# of curated datasets. This allows Ragbot.AI to quickly find the most relevant curated dataset
# Pinecone API Key
# Please replace <Your-Pinecone-API-Key> with your actual Pinecone API Key.
PINECONE_API_KEY="<Your-Pinecone-API-Key>"
# Please replace <Your-Pinecone-Index-Name> with your actual Pinecone Index Name.
PINECONE_INDEX_NAME="<Your-Pinecone-Index-Name>"