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
2 changes: 1 addition & 1 deletion src/lib/llm-proxy-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export function modelNotAllowedResponse() {
}

export function forbiddenFreeModelResponse() {
const error = `This is not a free model. Please use ${KILO_AUTO_BALANCED_MODEL.id} for affordable inference or ${KILO_AUTO_FREE_MODEL.id} for limited free inference.`;
const error = `The free period of this model ended. Please use ${KILO_AUTO_BALANCED_MODEL.id} for affordable inference or ${KILO_AUTO_FREE_MODEL.id} for limited free inference.`;
return NextResponse.json({ error, message: error }, { status: 404 });
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/providers/gigapotato.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const giga_potato_model: KiloFreeModel = {
'**Note:** Prompts and completions are logged and may be used to improve the model.',
context_length: 256_000,
max_completion_tokens: 32_000,
status: 'public',
status: 'disabled',
flags: ['prompt_cache', 'vision'],
gateway: 'gigapotato',
internal_id: 'ep-20260109111813-hztxv',
Expand Down
111 changes: 0 additions & 111 deletions src/tests/openrouter-models-sorting.approved.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,63 +182,6 @@
"preferredIndex": 3,
"isFree": true
},
{
"id": "giga-potato-thinking",
"canonical_slug": "giga-potato-thinking",
"hugging_face_id": "",
"name": "Giga Potato Thinking (free)",
"created": 1756238927,
"description": "Giga Potato is a stealth model deeply optimized for agentic programming, with visual understanding capability. It is provided free of charge in Kilo Code for a limited time.\n**Note:** Prompts and completions are logged and may be used to improve the model.",
"context_length": 256000,
"architecture": {
"modality": "text+image->text",
"input_modalities": [
"text",
"image"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000000",
"completion": "0.0000000",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.00000000"
},
"top_provider": {
"context_length": 256000,
"max_completion_tokens": 32000,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"temperature",
"tools",
"reasoning",
"include_reasoning"
],
"default_parameters": {},
"preferredIndex": 5,
"isFree": true,
"versioned_settings": {
"4.146.0": {
"included_tools": [
"write_file",
"edit_file"
],
"excluded_tools": [
"apply_diff"
]
}
}
},
{
"id": "anthropic/claude-sonnet-4",
"name": "Claude Sonnet 4",
Expand Down Expand Up @@ -590,60 +533,6 @@
"default_parameters": {},
"isFree": true
},
{
"id": "giga-potato",
"canonical_slug": "giga-potato",
"hugging_face_id": "",
"name": "Giga Potato (free)",
"created": 1756238927,
"description": "Giga Potato is a stealth model deeply optimized for agentic programming, with visual understanding capability. It is provided free of charge in Kilo Code for a limited time.\n**Note:** Prompts and completions are logged and may be used to improve the model.",
"context_length": 256000,
"architecture": {
"modality": "text+image->text",
"input_modalities": [
"text",
"image"
],
"output_modalities": [
"text"
],
"tokenizer": "Other",
"instruct_type": null
},
"pricing": {
"prompt": "0.0000000",
"completion": "0.0000000",
"request": "0",
"image": "0",
"web_search": "0",
"internal_reasoning": "0",
"input_cache_read": "0.00000000"
},
"top_provider": {
"context_length": 256000,
"max_completion_tokens": 32000,
"is_moderated": false
},
"per_request_limits": null,
"supported_parameters": [
"max_tokens",
"temperature",
"tools"
],
"default_parameters": {},
"isFree": true,
"versioned_settings": {
"4.146.0": {
"included_tools": [
"write_file",
"edit_file"
],
"excluded_tools": [
"apply_diff"
]
}
}
},
{
"id": "minimax/minimax-m2.5:free",
"canonical_slug": "minimax/minimax-m2.5:free",
Expand Down
Loading