Skip to content

Commit

Permalink
fix: updated twilio number
Browse files Browse the repository at this point in the history
  • Loading branch information
broomva committed Feb 9, 2024
1 parent e6510f0 commit 4fe0f00
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vortex/io/twilio.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
from twilio.rest import Client

from vortex.ai.agents import VortexAgent
from vortex.api.data_models import ChatsHistory, Conversation, SessionLocal, get_db
from vortex.api.data_models import (ChatsHistory, Conversation, SessionLocal,
get_db)

# db = SessionLocal()
# phone_number = ''
Expand All @@ -37,7 +38,7 @@
account_sid = os.environ.get("TWILIO_ACCOUNT_SID")
auth_token = os.environ.get("TWILIO_AUTH_TOKEN")
client = Client(account_sid, auth_token)
twilio_number = "+14155238886" or os.environ.get("TWILIO_NUMBER")
twilio_number = "+19853323941" or os.environ.get("TWILIO_NUMBER")

agents: Dict[str, weakref.ref] = weakref.WeakValueDictionary()

Expand Down

0 comments on commit 4fe0f00

Please sign in to comment.