inbound calls

This commit is contained in:
Ajay Raj 2023-03-04 13:59:33 -08:00
commit 2893ba9780
8 changed files with 58 additions and 20 deletions

View file

@ -0,0 +1,8 @@
from vocode.telephony.inbound_call_server import InboundCallServer
from vocode.models.agent import EchoAgentConfig
if __name__ == '__main__':
server = InboundCallServer(
agent_config=EchoAgentConfig(initial_message="hello!")
)
server.run(port=3001)