We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e5d035 commit a9237c1Copy full SHA for a9237c1
.github/next-release/changeset-ed01d58d.md
@@ -0,0 +1,5 @@
1
+---
2
+"livekit-plugins-groq": patch
3
4
+
5
+fix(groq-llm): temperature type (#2137)
livekit-plugins/livekit-plugins-groq/livekit/plugins/groq/services.py
@@ -22,7 +22,7 @@ def __init__(
22
model: str | LLMModels = "llama-3.3-70b-versatile",
23
api_key: NotGivenOr[str] = NOT_GIVEN,
24
user: NotGivenOr[str] = NOT_GIVEN,
25
- temperature: NotGivenOr[float] = NOT_GIVEN,
+ temperature: float | None = None,
26
parallel_tool_calls: NotGivenOr[bool] = NOT_GIVEN,
27
tool_choice: NotGivenOr[ToolChoice] = NOT_GIVEN,
28
base_url: str | None = "https://api.groq.com/openai/v1",
0 commit comments