Skip to content
This repository was archived by the owner on Dec 20, 2025. It is now read-only.

Commit 39270f0

Browse files
azmavethclaude
andcommitted
fix: correct Groq provider detection test to use model string
- Change test to pass groq/llama3-70b-8192 as first argument to trigger provider detection - Previously was incorrectly using :mock provider with groq model string 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f3bca1e commit 39270f0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/ex_llm/providers/groq_test.exs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ defmodule ExLLM.Providers.GroqTest do
5454
messages = [%{role: "user", content: "Hello"}]
5555

5656
{:ok, response} =
57-
ExLLM.chat(:mock, messages,
58-
model: "groq/llama3-70b-8192",
57+
ExLLM.chat("groq/llama3-70b-8192", messages,
5958
mock_response: "Test response"
6059
)
6160

0 commit comments

Comments
 (0)