added LLM data extractiondocker compose up --build -d --force-recreate; docker compose logs -f

This commit is contained in:
2025-10-05 06:22:14 -07:00
parent 2f1bbefb94
commit 8d80431850
19 changed files with 937 additions and 24 deletions

10
app/models/llm_config.py Normal file
View File

@@ -0,0 +1,10 @@
from sqlalchemy import Column, Integer, String
from app.database import Base
class LLMConfig(Base):
__tablename__ = "llm_configs"
id = Column(Integer, primary_key=True, index=True)
openrouter_api_key = Column(String, nullable=True)
preferred_model = Column(String, default="anthropic/claude-3.5-sonnet")
browserless_api_key = Column(String, nullable=True)