Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions runner-examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ Examples demonstrating the unified development runner for building voice AI bots

## Prerequisites

1. Set up venv and install dependencies:

```bash
pip install pipecat-ai[runner]
uv sync
```

Set up your API keys in `.env`:
2. Set up your API keys in `.env`:

```bash
# Required for all examples
Expand Down
20 changes: 20 additions & 0 deletions runner-examples/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[project]
name = "runner-examples"
version = "0.1.0"
description = "Configuration for runner examples"
requires-python = ">=3.10"
dependencies = [
"pipecat-ai[daily,deepgram,cartesia,openai,runner,silero,webrtc,websocket]",
"pipecatcloud",
]

[dependency-groups]
dev = [
"pyright>=1.1.404,<2",
"ruff>=0.12.11,<1",
]

[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["I"]
1 change: 0 additions & 1 deletion runner-examples/requirements.txt

This file was deleted.