inbound calls
This commit is contained in:
parent
de6d76c955
commit
2893ba9780
8 changed files with 58 additions and 20 deletions
8
simple_inbound_call_server.py
Normal file
8
simple_inbound_call_server.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue