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
59 changes: 59 additions & 0 deletions models/google/gemma-4-31b-it.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: google
authType: api_key
model: gemma-4-31b-it
params:
- path: generationConfig.maxOutputTokens
type: integer
label: Max output tokens
description: Maximum number of tokens to include in a response candidate.
range:
min: 1
group: generation_length
- path: generationConfig.temperature
type: number
label: Temperature
description: Controls randomness. Lower values make outputs more focused; higher values make them more varied.
range:
min: 0
max: 2
step: 0.1
group: sampling
- path: generationConfig.topP
type: number
label: Top P
description: Controls nucleus sampling by limiting generation to the selected cumulative probability.
range:
min: 0
max: 1
step: 0.01
group: sampling
- path: generationConfig.topK
type: integer
label: Top K
description: Limits token sampling to the top K most likely next tokens.
range:
min: 0
group: sampling
- path: generationConfig.seed
type: integer
label: Seed
description: Optional seed used in decoding when reproducible sampling is desired.
group: sampling
- path: generationConfig.thinkingConfig.thinkingLevel
type: enum
label: Thinking level
description: Toggles Gemma 4's internal reasoning process.
values:
- minimal
- high
group: reasoning
- path: generationConfig.responseMimeType
type: enum
label: Response MIME type
description: MIME type for generated text candidates.
default: text/plain
values:
- text/plain
- application/json
group: output_format
Loading