Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions apps/web/src/lib/ai-gateway/auto-model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const BALANCED_QWEN_MODEL: ResolvedAutoModel = {

export const KILO_AUTO_FRONTIER_MODEL: AutoModel = {
id: 'kilo-auto/frontier',
name: 'Auto Frontier',
name: 'Auto Frontier (deprecated)',
description: 'Highest performance and capability for any task.',
context_length: 1_000_000,
max_completion_tokens: 128_000,
Expand Down Expand Up @@ -125,7 +125,7 @@ export const KILO_AUTO_FREE_MODEL: AutoModel = {

export const KILO_AUTO_BALANCED_MODEL: AutoModel = {
id: 'kilo-auto/balanced',
name: 'Auto Balanced',
name: 'Auto Balanced (deprecated)',
description: 'Great balance of price and capability.',
context_length: 1_000_000,
max_completion_tokens: 65_536,
Expand Down
4 changes: 0 additions & 4 deletions apps/web/src/lib/ai-gateway/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
*/

import {
KILO_AUTO_BALANCED_MODEL,
KILO_AUTO_EFFICIENT_MODEL,
KILO_AUTO_FREE_MODEL,
KILO_AUTO_FRONTIER_MODEL,
} from '@/lib/ai-gateway/auto-model';
import {
claude_opus_4_8_stealth_model,
Expand Down Expand Up @@ -62,8 +60,6 @@ export function selectAutoFreeModel(candidates: ReadonlyArray<AutoFreeModel>, ra
}

export const preferredModels = [
Comment thread
chrarnoldus marked this conversation as resolved.
KILO_AUTO_FRONTIER_MODEL.id,
KILO_AUTO_BALANCED_MODEL.id,
KILO_AUTO_EFFICIENT_MODEL.id,
KILO_AUTO_FREE_MODEL.id,

Expand Down
Loading