Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/inference-providers/guides/responses-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ client = OpenAI(
)

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

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