From f988dee5ca6a1f93ba23edb234d4e293173daa38 Mon Sep 17 00:00:00 2001 From: Hannes Rudolph Date: Tue, 9 Dec 2025 18:46:35 -0700 Subject: [PATCH] fix: use hyphen instead of em dash in GPT-5 Pro description, remove unused imports --- packages/types/src/providers/openai.ts | 2 +- webview-ui/src/components/chat/ChatRow.tsx | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/types/src/providers/openai.ts b/packages/types/src/providers/openai.ts index 4f89984394..4fc245907a 100644 --- a/packages/types/src/providers/openai.ts +++ b/packages/types/src/providers/openai.ts @@ -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, diff --git a/webview-ui/src/components/chat/ChatRow.tsx b/webview-ui/src/components/chat/ChatRow.tsx index fa17bf1541..1171c2ad31 100644 --- a/webview-ui/src/components/chat/ChatRow.tsx +++ b/webview-ui/src/components/chat/ChatRow.tsx @@ -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"