refactor: remove dead file task-id-validator.ts and unused isModelAvailable from model-name-matcher

This commit is contained in:
YeonGyu-Kim
2026-02-16 22:33:44 +09:00
parent c59f63a636
commit a1086f26d8
2 changed files with 0 additions and 12 deletions

View File

@@ -83,9 +83,3 @@ export function fuzzyMatchModel(
return result
}
export function isModelAvailable(
targetModel: string,
availableModels: Set<string>,
): boolean {
return fuzzyMatchModel(targetModel, availableModels) !== null
}

View File

@@ -1,6 +0,0 @@
const TASK_ID_PATTERN = /^T-[A-Za-z0-9-]+$/
export function parseTaskId(id: string): string | null {
if (!TASK_ID_PATTERN.test(id)) return null
return id
}