mirror of
https://github.com/sstent/foodplanner.git
synced 2026-01-25 19:21:37 +00:00
added LLM data extractiondocker compose up --build -d --force-recreate; docker compose logs -f
This commit is contained in:
10
app/models/llm_config.py
Normal file
10
app/models/llm_config.py
Normal 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)
|
||||
Reference in New Issue
Block a user