6 lines
276 B
Python
6 lines
276 B
Python
from vocode.streaming.telephony.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)
|