@@ -9,14 +9,9 @@ description = "Simple voice AI assistant built with LiveKit Agents for Python"
99requires-python = " >=3.9"
1010
1111dependencies = [
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.2" ,
1913 " livekit-plugins-noise-cancellation~=0.2.1" ,
14+ " python-dotenv" ,
2015]
2116
2217[dependency-groups ]
@@ -25,13 +20,19 @@ dev = [
2520 " pytest-asyncio" ,
2621]
2722
23+ # TODO: Remove these once agents 1.2 is released
24+ # If you run into git lfs smudge issues when doing `uv sync`, do this:
25+ # ```
26+ # uv cache clean
27+ # UV_GIT_LFS=1 uv sync
28+ # ```
2829[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 }
30+ livekit-agents = { git = " https://github.com /livekit/agents.git " , branch = " theo/agents1.2 " , subdirectory = " livekit-agents " }
31+ livekit-plugins-openai = { git = " https://github.com /livekit/agents.git " , branch = " theo/agents1.2 " , subdirectory = " livekit-plugins/livekit-plugins-openai" }
32+ livekit-plugins-turn-detector = { git = " https://github.com /livekit/agents.git " , branch = " theo/agents1.2 " , subdirectory = " livekit-plugins/livekit-plugins-turn-detector" }
33+ livekit-plugins-silero = { git = " https://github.com /livekit/agents.git " , branch = " theo/agents1.2 " , subdirectory = " livekit-plugins/livekit-plugins-silero" }
34+ livekit-plugins-cartesia = { git = " https://github.com /livekit/agents.git " , branch = " theo/agents1.2 " , subdirectory = " livekit-plugins/livekit-plugins-cartesia" }
35+ livekit-plugins-deepgram = { git = " https://github.com /livekit/agents.git " , branch = " theo/agents1.2 " , subdirectory = " livekit-plugins/livekit-plugins-deepgram" }
3536
3637[tool .setuptools .packages .find ]
3738where = [" src" ]
0 commit comments