File size: 842 Bytes
6158da4
 
 
 
 
4fc2bf8
 
6158da4
 
 
e27870a
6d056d5
9b7a7cf
e029e22
6158da4
e029e22
 
fc2cb23
1e2550f
 
 
 
fc2cb23
b83cc65
 
6a3dbe6
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
from dotenv import load_dotenv
import os

load_dotenv()

TIMEOUT = 60

# API Keys - Loaded from the .env file

OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
LLAMA_CLOUD_API_KEY = os.getenv("LLAMA_CLOUD_API_KEY")
HUGGINGFACE_TOKEN = os.getenv("HUGGINGFACE_TOKEN")
LITERAL_API_KEY_LOGGING = os.getenv("LITERAL_API_KEY_LOGGING")
LITERAL_API_URL = os.getenv("LITERAL_API_URL")

OAUTH_GOOGLE_CLIENT_ID = os.getenv("OAUTH_GOOGLE_CLIENT_ID")
OAUTH_GOOGLE_CLIENT_SECRET = os.getenv("OAUTH_GOOGLE_CLIENT_SECRET")

opening_message = "Hey, What Can I Help You With?\n\nYou can me ask me questions about the course logistics, course content, about the final project, or anything else!"
chat_end_message = (
    "I hope I was able to help you. If you have any more questions, feel free to ask!"
)

# Model Paths

LLAMA_PATH = "../storage/models/tinyllama"