Skip to content

Commit 92aca17

Browse files
committed
Cleanup
1 parent c1d3a57 commit 92aca17

File tree

3 files changed

+3
-56
lines changed

3 files changed

+3
-56
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,3 @@ uv run python src/agent.py dev
4747

4848
This agent requires a frontend application to communicate with. Use a [starter app](https://docs.livekit.io/agents/start/frontend/#starter-apps), our hosted [Sandbox](https://cloud.livekit.io/projects/p_/sandbox) frontends, or the [LiveKit Agents Playground](https://agents-playground.livekit.io/).
4949

50-
51-
Run tests
52-
53-
```console
54-
uv run pytest
55-
```

evals/test_agent.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,36 +9,13 @@ description = "Simple voice AI assistant built with LiveKit Agents for Python"
99
requires-python = ">=3.9"
1010

1111
dependencies = [
12-
"livekit-agents",
13-
"livekit-plugins-openai",
14-
"livekit-plugins-turn-detector",
15-
"livekit-plugins-silero",
16-
"livekit-plugins-cartesia",
17-
"livekit-plugins-deepgram",
18-
"python-dotenv",
12+
"livekit-agents[openai,turn-detector,silero,cartesia,deepgram]~=1.0",
1913
"livekit-plugins-noise-cancellation~=0.2.1",
14+
"python-dotenv",
2015
]
2116

22-
[dependency-groups]
23-
dev = [
24-
"pytest",
25-
"pytest-asyncio",
26-
]
27-
28-
[tool.uv.sources]
29-
livekit-agents = { path = "../../livekit/agents/livekit-agents", editable = true }
30-
livekit-plugins-openai = { path = "../../livekit/agents/livekit-plugins/livekit-plugins-openai", editable = true }
31-
livekit-plugins-turn-detector = { path = "../../livekit/agents/livekit-plugins/livekit-plugins-turn-detector", editable = true }
32-
livekit-plugins-silero = { path = "../../livekit/agents/livekit-plugins/livekit-plugins-silero", editable = true }
33-
livekit-plugins-cartesia = { path = "../../livekit/agents/livekit-plugins/livekit-plugins-cartesia", editable = true }
34-
livekit-plugins-deepgram = { path = "../../livekit/agents/livekit-plugins/livekit-plugins-deepgram", editable = true }
35-
3617
[tool.setuptools.packages.find]
3718
where = ["src"]
3819

3920
[tool.setuptools.package-dir]
40-
"" = "src"
41-
42-
[tool.pytest.ini_options]
43-
asyncio_mode = "auto"
44-
asyncio_default_fixture_loop_scope = "function"
21+
"" = "src"

0 commit comments

Comments
 (0)