From c4a9c1f650e5695a8eb39ec89a3089e52e37657b Mon Sep 17 00:00:00 2001 From: Ben Cherry Date: Mon, 8 Jun 2026 10:15:23 -0700 Subject: [PATCH 1/2] Fix dependency version specification for livekit-agents --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dab8f85..74804bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "Simple voice AI assistant built with LiveKit Agents for Python" requires-python = ">=3.10, <3.15" dependencies = [ - "livekit-agents[silero,turn-detector]==1.5.17", + "livekit-agents[silero,turn-detector]^=1.5.17", "livekit-plugins-ai-coustics~=0.2", "python-dotenv", ] From b982c03ad6669a0c9f5ea9fd504b1ff2823a2a94 Mon Sep 17 00:00:00 2001 From: Ben Cherry Date: Mon, 8 Jun 2026 10:17:32 -0700 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 74804bd..182eb1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "Simple voice AI assistant built with LiveKit Agents for Python" requires-python = ">=3.10, <3.15" dependencies = [ - "livekit-agents[silero,turn-detector]^=1.5.17", + "livekit-agents[silero,turn-detector]>=1.5.17", "livekit-plugins-ai-coustics~=0.2", "python-dotenv", ]