Skip to content

Commit

Permalink
udate
Browse files Browse the repository at this point in the history
  • Loading branch information
tommylees112 committed Sep 13, 2024
1 parent 63df4b0 commit 789ef2e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ class Config:


def get_settings() -> Settings:
return Settings()
return Settings(
TWILIO_ACCOUNT_SID=os.environ.get("TWILIO_ACCOUNT_SID"),
TWILIO_AUTH_TOKEN=os.environ.get("TWILIO_AUTH_TOKEN"),
TWILIO_PHONE_NUMBER=os.environ.get("TWILIO_PHONE_NUMBER"),
COHERE_API_KEY=os.environ.get("COHERE_API_KEY"),
)


# Create a global instance of the settings
Expand Down

0 comments on commit 789ef2e

Please sign in to comment.