Remove deprecated demo, ingest, schema, and test parser files; add new LLM parser implementation and settings configuration

This commit is contained in:
bolade
2025-08-28 23:09:14 +01:00
parent bbf6af58f0
commit 4c99638d94
8 changed files with 38 additions and 819 deletions
+10
View File
@@ -0,0 +1,10 @@
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
api_key: str
db_url: str
class Config:
env_file = ".env"
settings = Settings()