Skip to content
Open
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
67 changes: 67 additions & 0 deletions models/google/gemini-flash-lite-latest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: google
authType: api_key
model: gemini-flash-lite-latest
params:
- path: generationConfig.maxOutputTokens
type: integer
label: Max output tokens
description: Maximum number of tokens to include in a response candidate.
range:
min: 1
max: 65536
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.
default: 1
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 tokens within the selected cumulative probability.
default: 0.95
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.
default: 64
range:
min: 0
group: sampling
- path: generationConfig.seed
type: integer
label: Seed
description: Optional seed used for decoding when reproducible sampling is desired.
group: sampling
- path: generationConfig.thinkingConfig.thinkingBudget
type: integer
label: Thinking budget
description: Number of thinking tokens Gemini should use; -1 uses dynamic thinking, 0 disables thinking, and fixed budgets start at 512 tokens.
default: 0
group: reasoning
- path: generationConfig.thinkingConfig.includeThoughts
type: boolean
label: Include thoughts
description: Controls whether Gemini returns available thought summaries in the response parts.
default: false
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
90 changes: 90 additions & 0 deletions packages/modelparams/src/generated/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7369,6 +7369,96 @@ export const CATALOG = [
}
]
},
{
"provider": "google",
"authType": "api_key",
"model": "gemini-flash-lite-latest",
"params": [
{
"path": "generationConfig.maxOutputTokens",
"label": "Max output tokens",
"description": "Maximum number of tokens to include in a response candidate.",
"group": "generation_length",
"type": "integer",
"range": {
"min": 1,
"max": 65536
}
},
{
"path": "generationConfig.temperature",
"label": "Temperature",
"description": "Controls randomness. Lower values make outputs more focused; higher values make them more varied.",
"group": "sampling",
"type": "number",
"default": 1,
"range": {
"min": 0,
"max": 2,
"step": 0.1
}
},
{
"path": "generationConfig.topP",
"label": "Top P",
"description": "Controls nucleus sampling by limiting generation to tokens within the selected cumulative probability.",
"group": "sampling",
"type": "number",
"default": 0.95,
"range": {
"min": 0,
"max": 1,
"step": 0.01
}
},
{
"path": "generationConfig.topK",
"label": "Top K",
"description": "Limits token sampling to the top K most likely next tokens.",
"group": "sampling",
"type": "integer",
"default": 64,
"range": {
"min": 0
}
},
{
"path": "generationConfig.seed",
"label": "Seed",
"description": "Optional seed used for decoding when reproducible sampling is desired.",
"group": "sampling",
"type": "integer"
},
{
"path": "generationConfig.thinkingConfig.thinkingBudget",
"label": "Thinking budget",
"description": "Number of thinking tokens Gemini should use; -1 uses dynamic thinking, 0 disables thinking, and fixed budgets start at 512 tokens.",
"group": "reasoning",
"type": "integer",
"default": 0
},
{
"path": "generationConfig.thinkingConfig.includeThoughts",
"label": "Include thoughts",
"description": "Controls whether Gemini returns available thought summaries in the response parts.",
"group": "reasoning",
"type": "boolean",
"default": false
},
{
"path": "generationConfig.responseMimeType",
"label": "Response MIME type",
"description": "MIME type for generated text candidates.",
"group": "output_format",
"type": "enum",
"default": "text/plain",
"values": [
"text/plain",
"application/json"
]
}
]
},
{
"provider": "google",
"authType": "api_key",
Expand Down
8 changes: 8 additions & 0 deletions packages/modelparams/src/generated/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,14 @@ export const DEFAULTS = {
"generationConfig.thinkingConfig.includeThoughts": false,
"generationConfig.responseMimeType": "text/plain",
},
"google/gemini-flash-lite-latest": {
"generationConfig.temperature": 1,
"generationConfig.topP": 0.95,
"generationConfig.topK": 64,
"generationConfig.thinkingConfig.thinkingBudget": 0,
"generationConfig.thinkingConfig.includeThoughts": false,
"generationConfig.responseMimeType": "text/plain",
},
"google/gemma-4-26b-a4b-it": {
"generationConfig.temperature": 1,
"generationConfig.topP": 0.95,
Expand Down
1 change: 1 addition & 0 deletions packages/modelparams/src/generated/model-ids.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export const MODEL_IDS = [
"google/gemini-3.1-pro-preview-subscription",
"google/gemini-3.5-flash",
"google/gemini-flash-latest",
"google/gemini-flash-lite-latest",
"google/gemma-4-26b-a4b-it",
"google/gemma-4-31b-it",
"meta/Llama-3.3-70B-Instruct",
Expand Down
10 changes: 10 additions & 0 deletions packages/modelparams/src/generated/params-by-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -626,6 +626,16 @@ export type ParamsById = {
"generationConfig.thinkingConfig.includeThoughts": boolean;
"generationConfig.responseMimeType": "text/plain" | "application/json";
};
"google/gemini-flash-lite-latest": {
"generationConfig.maxOutputTokens": number;
"generationConfig.temperature": number;
"generationConfig.topP": number;
"generationConfig.topK": number;
"generationConfig.seed": number;
"generationConfig.thinkingConfig.thinkingBudget": number;
"generationConfig.thinkingConfig.includeThoughts": boolean;
"generationConfig.responseMimeType": "text/plain" | "application/json";
};
"google/gemma-4-26b-a4b-it": {
"generationConfig.maxOutputTokens": number;
"generationConfig.temperature": number;
Expand Down
Loading