Add requirements.txt with essential dependencies for the project

This commit is contained in:
2025-10-05 11:29:45 +00:00
commit 3d48cf0385
15 changed files with 3686 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from pydantic_settings import BaseSettings
from typing import Optional
class Settings(BaseSettings):
database_url: Optional[str] = None
secret_key: Optional[str] = None
api_key: Optional[str] = None
GROQ_API_KEY: str
class Config:
env_file = ".env"
settings = Settings()