fix: use hyphen instead of em dash in GPT-5 Pro description, remove unused imports

This commit is contained in:
Hannes Rudolph 2025-12-09 18:46:35 -07:00
parent 9803d434a6
commit f988dee5ca
2 changed files with 1 additions and 3 deletions

View file

@ -57,7 +57,7 @@ export const openAiNativeModels = {
inputPrice: 15.0,
outputPrice: 120.0,
description:
"GPT-5 Pro: A slow, reasoning-focused model for complex problems. Uses background mode with resilient streaming requests may take some time and will automatically reconnect if they time out.",
"GPT-5 Pro: A slow, reasoning-focused model for complex problems. Uses background mode with resilient streaming - requests may take some time and will automatically reconnect if they time out.",
supportsVerbosity: true,
supportsTemperature: false,
backgroundMode: true,

View file

@ -15,8 +15,6 @@ import { useExtensionState } from "@src/context/ExtensionStateContext"
import { findMatchingResourceOrTemplate } from "@src/utils/mcp"
import { vscode } from "@src/utils/vscode"
import { formatPathTooltip } from "@src/utils/formatPathTooltip"
import { removeLeadingNonAlphanumeric } from "@src/utils/removeLeadingNonAlphanumeric"
import { getLanguageFromPath } from "@src/utils/getLanguageFromPath"
import { labelForBackgroundStatus } from "@src/utils/backgroundStatus"
import { ToolUseBlock, ToolUseBlockHeader } from "../common/ToolUseBlock"