Skip to content

Commit edd1d33

Browse files
committed
chore(deadcode): dedupe repeated literal lists
1 parent 0ea39a2 commit edd1d33

4 files changed

Lines changed: 1 addition & 9 deletions

File tree

extensions/memory-core/src/concept-vocabulary.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ const LANGUAGE_STOP_WORDS = {
209209
"할",
210210
"해",
211211
"했다",
212-
"했다",
213212
],
214213
pathNoise: [
215214
"cjs",

src/agents/gpt5-prompt-overlay.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const OPENAI_FAMILY_GPT5_PROMPT_OVERLAY_PROVIDERS = new Set([
1212
"codex",
1313
"codex-cli",
1414
"openai",
15-
"openai",
1615
"azure-openai",
1716
"azure-openai-responses",
1817
]);

src/config/zod-schema.core.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,6 @@ const BUILT_IN_MODEL_PROVIDER_OVERLAY_IDS = new Set([
463463
"nvidia",
464464
"ollama",
465465
"openai",
466-
"openai",
467466
"opencode",
468467
"opencode-go",
469468
"openrouter",

src/llm/providers/azure-openai-responses.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,7 @@ import {
2323
import { buildBaseOptions } from "./simple-options.js";
2424

2525
const DEFAULT_AZURE_API_VERSION = "v1";
26-
const AZURE_TOOL_CALL_PROVIDERS = new Set([
27-
"openai",
28-
"openai",
29-
"opencode",
30-
"azure-openai-responses",
31-
]);
26+
const AZURE_TOOL_CALL_PROVIDERS = new Set(["openai", "opencode", "azure-openai-responses"]);
3227

3328
function resolveDeploymentName(
3429
model: Model<"azure-openai-responses">,

0 commit comments

Comments
 (0)