Skip to content

Commit 192efc4

Browse files
committed
reasoning effort: switch to gpt-oss
1 parent cc69fc5 commit 192efc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/inference-providers/guides/responses-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ client = OpenAI(
754754
)
755755

756756
response = client.responses.create(
757-
model="deepseek-ai/DeepSeek-R1",
757+
model="openai/gpt-oss-120b:groq",
758758
instructions="You are a helpful assistant.",
759759
input="Say hello to the world.",
760760
reasoning={"effort": "low"},
@@ -777,7 +777,7 @@ const client = new OpenAI({
777777
});
778778

779779
const response = await client.responses.create({
780-
model: "deepseek-ai/DeepSeek-R1",
780+
model: "openai/gpt-oss-120b:groq",
781781
instructions: "You are a helpful assistant.",
782782
input: "Say hello to the world.",
783783
reasoning: { effort: "low" },
@@ -797,7 +797,7 @@ curl https://router.huggingface.co/v1/responses \
797797
-H "Authorization: Bearer $HF_TOKEN" \
798798
-H "Content-Type: application/json" \
799799
-d '{
800-
"model": "deepseek-ai/DeepSeek-R1",
800+
"model": "openai/gpt-oss-120b:groq",
801801
"instructions": "You are a helpful assistant.",
802802
"input": "Say hello to the world.",
803803
"reasoning": {"effort": "low"}

0 commit comments

Comments
 (0)