8 lines
No EOL
269 B
Python
8 lines
No EOL
269 B
Python
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) |