mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 01:21:48 +03:00
9 lines
174 B
Python
9 lines
174 B
Python
from pydantic import BaseSettings
|
|
|
|
|
|
class BrainSettings(BaseSettings):
|
|
openai_api_key: str
|
|
anthropic_api_key: str
|
|
supabase_url: str
|
|
supabase_service_key: str
|