Initial project setup
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import os
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
class Config:
|
||||
COHERE_API_KEY = os.getenv("COHERE_API_KEY")
|
||||
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
|
||||
RSS_FEEDS = [
|
||||
"http://rss.nytimes.com/services/xml/rss/nyt/Technology.xml",
|
||||
"https://feeds.bbci.co.uk/news/technology/rss.xml"
|
||||
]
|
||||
VECTOR_DB_PATH = "data/vector_db.index"
|
||||
Reference in New Issue
Block a user