-
Notifications
You must be signed in to change notification settings - Fork 399
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jon Taylor
committed
Apr 3, 2024
1 parent
c210148
commit 70d3dce
Showing
7 changed files
with
334 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,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,27 @@ | ||
FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
ARG USE_PERSISTENT_DATA | ||
ENV PYTHONUNBUFFERED=1 | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
build-essential \ | ||
python3-pip \ | ||
python3-dev \ | ||
git \ | ||
ffmpeg \ | ||
google-perftools \ | ||
ca-certificates curl gnupg \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# Install Python dependencies (Worker Template) | ||
COPY requirements.txt /requirements.txt | ||
RUN python3 -m pip install --upgrade pip && \ | ||
python3 -m pip install --upgrade -r /requirements.txt --no-cache-dir && \ | ||
rm /requirements.txt | ||
|
||
ADD app.py . | ||
|
||
ENV LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4 | ||
|
||
CMD python3 app.py |
Empty file.
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,54 @@ | ||
import asyncio | ||
import aiohttp | ||
import logging | ||
import os | ||
from dailyai.pipeline.frames import EndFrame, TextFrame | ||
from dailyai.pipeline.pipeline import Pipeline | ||
|
||
from dailyai.transports.daily_transport import DailyTransport | ||
from dailyai.services.elevenlabs_ai_service import ElevenLabsTTSService | ||
|
||
from daily_setup import configure | ||
|
||
from dotenv import load_dotenv | ||
load_dotenv() | ||
|
||
logging.basicConfig(format=f"%(levelno)s %(asctime)s %(message)s") | ||
logger = logging.getLogger("dailyai") | ||
logger.setLevel(logging.DEBUG) | ||
|
||
|
||
async def main(room_url): | ||
async with aiohttp.ClientSession() as session: | ||
transport = DailyTransport( | ||
room_url, | ||
None, | ||
"Say One Thing", | ||
mic_enabled=True, | ||
) | ||
|
||
tts = ElevenLabsTTSService( | ||
aiohttp_session=session, | ||
api_key=os.getenv("ELEVENLABS_API_KEY"), | ||
voice_id=os.getenv("ELEVENLABS_VOICE_ID"), | ||
) | ||
|
||
pipeline = Pipeline([tts]) | ||
|
||
# Register an event handler so we can play the audio when the | ||
# participant joins. | ||
@transport.event_handler("on_participant_joined") | ||
async def on_participant_joined(transport, participant): | ||
if participant["info"]["isLocal"]: | ||
return | ||
|
||
participant_name = participant["info"]["userName"] or '' | ||
await pipeline.queue_frames([TextFrame("Hello there, " + participant_name + "!"), EndFrame()]) | ||
|
||
await transport.run(pipeline) | ||
del tts | ||
|
||
|
||
if __name__ == "__main__": | ||
(url, token) = configure() | ||
asyncio.run(main(url)) |
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,58 @@ | ||
import argparse | ||
import os | ||
import time | ||
import urllib | ||
import requests | ||
|
||
|
||
def configure(): | ||
parser = argparse.ArgumentParser(description="Daily AI SDK Bot Sample") | ||
parser.add_argument( | ||
"-u", | ||
"--url", | ||
type=str, | ||
required=False, | ||
help="URL of the Daily room to join") | ||
parser.add_argument( | ||
"-k", | ||
"--apikey", | ||
type=str, | ||
required=False, | ||
help="Daily API Key (needed to create an owner token for the room)", | ||
) | ||
|
||
args, unknown = parser.parse_known_args() | ||
|
||
url = args.url or os.getenv("DAILY_ROOM_URL") | ||
key = args.apikey or os.getenv("DAILY_API_KEY") | ||
|
||
if not url: | ||
raise Exception( | ||
"No Daily room specified. use the -u/--url option from the command line, or set DAILY_SAMPLE_ROOM_URL in your environment to specify a Daily room URL.") | ||
|
||
if not key: | ||
raise Exception("No Daily API key specified. use the -k/--apikey option from the command line, or set DAILY_API_KEY in your environment to specify a Daily API key, available from https://dashboard.daily.co/developers.") | ||
|
||
# Create a meeting token for the given room with an expiration 1 hour in | ||
# the future. | ||
room_name: str = urllib.parse.urlparse(url).path[1:] | ||
expiration: float = time.time() + 60 * 60 | ||
|
||
res: requests.Response = requests.post( | ||
f"https://api.daily.co/v1/meeting-tokens", | ||
headers={ | ||
"Authorization": f"Bearer {key}"}, | ||
json={ | ||
"properties": { | ||
"room_name": room_name, | ||
"is_owner": True, | ||
"exp": expiration}}, | ||
) | ||
|
||
if res.status_code != 200: | ||
raise Exception( | ||
f"Failed to create meeting token: {res.status_code} {res.text}") | ||
|
||
token: str = res.json()["token"] | ||
|
||
return (url, token) |
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 @@ | ||
ELEVENLABS_API_KEY= | ||
ELEVENLABS_VOICE_ID= | ||
DAILY_API_KEY=... | ||
DAILY_ROOM_URL=https://... |
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,30 @@ | ||
#FROM runpod/pytorch:2.2.0-py3.10-cuda12.1.1-devel-ubuntu22.04 | ||
#runpod/pytorch:2.2.0-py3.10-cuda12.1.1-devel-ubuntu22.04 | ||
#pytorch/pytorch:2.2.1-cuda12.1-cudnn8-devel | ||
#nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04 | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
ARG USE_PERSISTENT_DATA | ||
ENV PYTHONUNBUFFERED=1 | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
build-essential \ | ||
python3-pip \ | ||
python3-dev \ | ||
git \ | ||
ffmpeg \ | ||
google-perftools \ | ||
ca-certificates curl gnupg \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# Install Python dependencies (Worker Template) | ||
COPY requirements.txt /requirements.txt | ||
RUN python3 -m pip install --upgrade pip && \ | ||
python3 -m pip install --upgrade -r /requirements.txt --no-cache-dir && \ | ||
rm /requirements.txt | ||
|
||
ADD app.py . | ||
|
||
ENV LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libtcmalloc.so.4 | ||
|
||
CMD python3 app.py |