mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
add: router agent env
This commit is contained in:
parent
c7a7db309c
commit
cbb1607f12
48 changed files with 6764 additions and 0 deletions
13
environments/router_env/engine/config/settings.py
Normal file
13
environments/router_env/engine/config/settings.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from pydantic_settings import BaseSettings
|
||||
|
||||
class Settings(BaseSettings):
|
||||
# Add any specific settings required by the application here
|
||||
# For example:
|
||||
# spotify_client_id: str | None = None
|
||||
# spotify_client_secret: str | None = None
|
||||
|
||||
class Config:
|
||||
env_file = ".env"
|
||||
env_file_encoding = "utf-8"
|
||||
|
||||
settings = Settings()
|
||||
Loading…
Add table
Add a link
Reference in a new issue