open source

This commit is contained in:
Ajay Raj 2023-03-28 00:15:34 -07:00
commit a93bfc1ec9
61 changed files with 4013 additions and 126 deletions

View file

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