-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #243 from Viking5274/main
Add twilio_websocket_service with example
- Loading branch information
Showing
11 changed files
with
604 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
OPENAI_API_KEY= | ||
DEEPGRAM_API_KEY= | ||
ELEVENLABS_API_KEY= | ||
ELEVENLABS_VOICE_ID= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.nox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
*.py,cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
db.sqlite3 | ||
db.sqlite3-journal | ||
|
||
# Flask stuff: | ||
instance/ | ||
.webassets-cache | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
.pybuilder/ | ||
target/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# IPython | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# pyenv | ||
# For a library or package, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# .python-version | ||
|
||
# pipenv | ||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
# However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
# having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
# install all needed dependencies. | ||
#Pipfile.lock | ||
|
||
# poetry | ||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. | ||
# This is especially recommended for binary packages to ensure reproducibility, and is more | ||
# commonly ignored for libraries. | ||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control | ||
#poetry.lock | ||
|
||
# pdm | ||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. | ||
#pdm.lock | ||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it | ||
# in version control. | ||
# https://pdm.fming.dev/#use-with-ide | ||
.pdm.toml | ||
|
||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm | ||
__pypackages__/ | ||
|
||
# Celery stuff | ||
celerybeat-schedule | ||
celerybeat.pid | ||
|
||
# SageMath parsed files | ||
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# pytype static type analyzer | ||
.pytype/ | ||
|
||
# Cython debug symbols | ||
cython_debug/ | ||
|
||
# PyCharm | ||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can | ||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore | ||
# and can be added to the global gitignore or merged into this file. For a more nuclear | ||
# option (not recommended) you can uncomment the following to ignore the entire idea folder. | ||
#.idea/ | ||
runpod.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Use an official Python runtime as a parent image | ||
FROM python:3.10-bullseye | ||
|
||
# Set the working directory in the container | ||
WORKDIR /twilio-chatbot | ||
|
||
# Copy the requirements file into the container | ||
COPY requirements.txt . | ||
|
||
# Install any needed packages specified in requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
# Copy the current directory contents into the container | ||
COPY . . | ||
|
||
# Expose the desired port | ||
EXPOSE 8765 | ||
|
||
# Run the application | ||
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8765"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# Twilio Chatbot | ||
|
||
This project is a FastAPI-based chatbot that integrates with Twilio to handle WebSocket connections and provide real-time communication. The project includes endpoints for starting a call and handling WebSocket connections. | ||
|
||
## Table of Contents | ||
|
||
- [Features](#features) | ||
- [Requirements](#requirements) | ||
- [Installation](#installation) | ||
- [Running the Application](#running-the-application) | ||
- [Usage](#usage) | ||
|
||
## Features | ||
|
||
- **FastAPI**: A modern, fast (high-performance), web framework for building APIs with Python 3.6+. | ||
- **WebSocket Support**: Real-time communication using WebSockets. | ||
- **CORS Middleware**: Allowing cross-origin requests for testing. | ||
- **Dockerized**: Easily deployable using Docker. | ||
|
||
## Requirements | ||
|
||
- Python 3.10 | ||
- Docker (for containerized deployment) | ||
- ngrok (for tunneling) | ||
- Twilio Account | ||
|
||
## Installation | ||
|
||
1. **Set up a virtual environment** (optional but recommended): | ||
```sh | ||
python -m venv venv | ||
source venv/bin/activate # On Windows, use `venv\Scripts\activate` | ||
``` | ||
|
||
2. **Install dependencies**: | ||
```sh | ||
pip install -r requirements.txt | ||
``` | ||
|
||
3. **Create .env**: | ||
create .env based on .env.example | ||
|
||
4. **Install ngrok**: | ||
Follow the instructions on the [ngrok website](https://ngrok.com/download) to download and install ngrok. | ||
|
||
## Running the Application | ||
|
||
### Using Python | ||
|
||
1. **Run the FastAPI application**: | ||
```sh | ||
python server.py | ||
``` | ||
|
||
2. **Start ngrok**: | ||
In a new terminal, start ngrok to tunnel the local server: | ||
```sh | ||
ngrok http 8765 | ||
``` | ||
|
||
3. **Update the Twilio Webhook**: | ||
Copy the ngrok URL and update your Twilio phone number webhook URL to `http://<ngrok_url>/start_call`. | ||
|
||
3. **Update the streams.xml**: | ||
Copy the ngrok URL and update your .xml URL to `wss://<ngrok_url>/ws`. | ||
|
||
### Using Docker | ||
|
||
1. **Build the Docker image**: | ||
```sh | ||
docker build -t twilio-chatbot . | ||
``` | ||
|
||
2. **Run the Docker container**: | ||
```sh | ||
docker build -t twilio-chatbot . | ||
docker run -it --rm -p 8765:8765 twilio-chatbot | ||
``` | ||
|
||
3. **Start ngrok**: | ||
In a new terminal, start ngrok to tunnel the local server: | ||
```sh | ||
ngrok http 8765 | ||
``` | ||
|
||
4. **Update the Twilio Webhook**: | ||
Copy the ngrok URL and update your Twilio phone number webhook URL to `http://<ngrok_url>/start_call`. | ||
|
||
5. **Update the streams.xml**: | ||
Copy the ngrok URL and update your .xml URL to `wss://<ngrok_url>/ws`. | ||
|
||
## Usage | ||
|
||
To start a call, simply make a call to your Twilio phone number. The webhook URL will direct the call to your FastAPI application, which will handle it accordingly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pipecat-ai[daily,openai,silero,deepgram] | ||
fastapi | ||
uvicorn | ||
python-dotenv | ||
loguru |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
from fastapi import FastAPI, WebSocket, WebSocketDisconnect | ||
from fastapi.middleware.cors import CORSMiddleware | ||
import uvicorn | ||
from starlette.responses import HTMLResponse | ||
from test_bot import run_bot | ||
|
||
app = FastAPI() | ||
|
||
app.add_middleware( | ||
CORSMiddleware, | ||
allow_origins=["*"], # Allow all origins for testing | ||
allow_credentials=True, | ||
allow_methods=["*"], | ||
allow_headers=["*"], | ||
) | ||
|
||
|
||
@app.post('/start_call') | ||
async def start_call(): | ||
print("POST TwiML") | ||
return HTMLResponse(content=open("templates/streams.xml").read(), media_type="application/xml") | ||
|
||
|
||
@app.websocket("/ws") | ||
async def websocket_endpoint(websocket: WebSocket): | ||
await websocket.accept() | ||
print("WebSocket connection accepted") | ||
await run_bot(websocket) | ||
|
||
|
||
if __name__ == "__main__": | ||
uvicorn.run(app, host="0.0.0.0", port=8765) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Response> | ||
<Connect> | ||
<Stream url="wss://<your server url>/ws"></Stream> | ||
</Connect> | ||
<Pause length="40"/> | ||
</Response> |
Oops, something went wrong.