Skip to content
Merged
Show file tree
Hide file tree
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
89 changes: 89 additions & 0 deletions models/groq/qwen3-32b.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: groq
authType: api_key
model: qwen3-32b
params:
- path: max_completion_tokens
type: integer
label: Max tokens
description: Maximum number of output tokens the model may generate.
range:
min: 1
group: generation_length
- path: temperature
type: number
label: Temperature
description: Controls randomness. Lower values make outputs more focused; higher values make them more varied.
default: 1
range:
min: 0
max: 2
step: 0.1
group: sampling
- path: top_p
type: number
label: Top P
description: Controls nucleus sampling by limiting generation to tokens within the selected cumulative probability.
default: 1
range:
min: 0
max: 1
step: 0.01
group: sampling
- path: frequency_penalty
type: number
label: Frequency penalty
description: Penalizes tokens by how often they have appeared, reducing verbatim repetition.
default: 0
range:
min: -2
max: 2
step: 0.1
group: sampling
- path: presence_penalty
type: number
label: Presence penalty
description: Penalizes tokens that have already appeared, encouraging the model to introduce new topics.
default: 0
range:
min: -2
max: 2
step: 0.1
group: sampling
- path: seed
type: integer
label: Seed
description: Seed used for best-effort deterministic sampling when reproducible outputs are desired.
group: sampling
- path: stop
type: string
label: Stop
description: A string or list of strings where the API will stop generating further tokens. Groq accepts up to four stop sequences.
group: generation_length
- path: reasoning_effort
type: enum
label: Reasoning effort
description: Controls whether the model reasons before answering. 'none' disables reasoning; 'default' lets the model reason.
default: default
values:
- none
- default
group: reasoning
- path: reasoning_format
type: enum
label: Reasoning format
description: Controls how reasoning tokens are returned — hidden from the response, raw within the content, or parsed into a separate field.
values:
- hidden
- raw
- parsed
group: reasoning
- path: response_format.type
type: enum
label: Response format
description: Forces the response into plain text or a JSON object.
default: text
values:
- text
- json_object
group: output_format
1 change: 1 addition & 0 deletions src/data/logos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const SLUG_TO_LOBE: Record<string, string> = {
moonshot: "moonshot",
alibaba: "alibabacloud-color",
"z-ai": "zai",
groq: "groq",
};

const cache = new Map<string, string | null>();
Expand Down
Loading