im really doing this

This commit is contained in:
Ajay Raj 2023-03-06 23:16:41 -08:00
commit 7f1ee9af7c
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "vocode" name = "vocode"
version = "0.1.24" version = "0.1.25"
description = "The all-in-one voice SDK" description = "The all-in-one voice SDK"
authors = ["Ajay Raj <ajay@vocode.dev>"] authors = ["Ajay Raj <ajay@vocode.dev>"]
license = "MIT License" license = "MIT License"

View file

@ -16,6 +16,7 @@ class InboundCallServer():
self.app.post("/vocode")(self.handle_call) self.app.post("/vocode")(self.handle_call)
async def handle_call(self, twilio_sid: str = Form(alias='CallSid')): async def handle_call(self, twilio_sid: str = Form(alias='CallSid')):
print(api_key, VOCODE_INBOUND_CALL_URL)
response = requests.post( response = requests.post(
VOCODE_INBOUND_CALL_URL, VOCODE_INBOUND_CALL_URL,
headers={ headers={