Initial project setup

This commit is contained in:
Ayomide
2025-07-07 22:08:02 +01:00
parent c158262a49
commit b76a3e75f3
11 changed files with 208 additions and 0 deletions
+13
View File
@@ -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"