@golba98/codexa 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +320 -0
- package/bin/codexa.js +445 -0
- package/package.json +45 -0
- package/scripts/audit-codexa-capabilities.mjs +466 -0
- package/scripts/smoke-terminal-bench.mjs +35 -0
- package/src/app.tsx +4561 -0
- package/src/appRenderStability.test.ts +131 -0
- package/src/commands/handler.test.ts +643 -0
- package/src/commands/handler.ts +875 -0
- package/src/config/launchArgs.test.ts +158 -0
- package/src/config/launchArgs.ts +186 -0
- package/src/config/layeredConfig.test.ts +143 -0
- package/src/config/layeredConfig.ts +836 -0
- package/src/config/persistence.test.ts +110 -0
- package/src/config/persistence.ts +311 -0
- package/src/config/runtimeConfig.test.ts +218 -0
- package/src/config/runtimeConfig.ts +554 -0
- package/src/config/settings.test.ts +155 -0
- package/src/config/settings.ts +401 -0
- package/src/config/toml-serialize.ts +98 -0
- package/src/config/trustStore.test.ts +29 -0
- package/src/config/trustStore.ts +68 -0
- package/src/core/attachments.test.ts +155 -0
- package/src/core/attachments.ts +71 -0
- package/src/core/auth/codexAuth.test.ts +68 -0
- package/src/core/auth/codexAuth.ts +359 -0
- package/src/core/cleanupFastFail.test.ts +76 -0
- package/src/core/cleanupFastFail.ts +67 -0
- package/src/core/clipboard.ts +24 -0
- package/src/core/codex.ts +124 -0
- package/src/core/codexExecArgs.test.ts +195 -0
- package/src/core/codexExecArgs.ts +152 -0
- package/src/core/codexLaunch.test.ts +205 -0
- package/src/core/codexLaunch.ts +162 -0
- package/src/core/codexPrompt.test.ts +252 -0
- package/src/core/codexPrompt.ts +428 -0
- package/src/core/executables/claudeExecutable.ts +63 -0
- package/src/core/executables/codexExecutable.test.ts +212 -0
- package/src/core/executables/codexExecutable.ts +159 -0
- package/src/core/executables/executableResolver.test.ts +129 -0
- package/src/core/executables/executableResolver.ts +138 -0
- package/src/core/executables/geminiExecutable.test.ts +116 -0
- package/src/core/executables/geminiExecutable.ts +78 -0
- package/src/core/executables/pathSanityScan.test.ts +47 -0
- package/src/core/githubDiagnostics.test.ts +92 -0
- package/src/core/githubDiagnostics.ts +222 -0
- package/src/core/hollowResponseFormat.test.ts +58 -0
- package/src/core/hollowResponseFormat.ts +39 -0
- package/src/core/inputDebug.ts +51 -0
- package/src/core/launchContext.test.ts +157 -0
- package/src/core/launchContext.ts +266 -0
- package/src/core/models/codexCapabilities.test.ts +45 -0
- package/src/core/models/codexCapabilities.ts +95 -0
- package/src/core/models/codexModelCapabilities.test.ts +246 -0
- package/src/core/models/codexModelCapabilities.ts +571 -0
- package/src/core/models/modelSpecs.test.ts +283 -0
- package/src/core/models/modelSpecs.ts +300 -0
- package/src/core/perf/profiler.ts +125 -0
- package/src/core/perf/renderDebug.test.ts +230 -0
- package/src/core/perf/renderDebug.ts +373 -0
- package/src/core/planStorage.test.ts +143 -0
- package/src/core/planStorage.ts +141 -0
- package/src/core/process/CommandRunner.test.ts +105 -0
- package/src/core/process/CommandRunner.ts +269 -0
- package/src/core/process/processValidation.ts +101 -0
- package/src/core/projectInstructions.test.ts +50 -0
- package/src/core/projectInstructions.ts +54 -0
- package/src/core/providerLauncher/launcher.test.ts +238 -0
- package/src/core/providerLauncher/launcher.ts +203 -0
- package/src/core/providerLauncher/registry.test.ts +324 -0
- package/src/core/providerLauncher/registry.ts +253 -0
- package/src/core/providerLauncher/types.ts +84 -0
- package/src/core/providerLauncher/workspaceConfig.test.ts +638 -0
- package/src/core/providerLauncher/workspaceConfig.ts +407 -0
- package/src/core/providerRuntime/anthropic.test.ts +1120 -0
- package/src/core/providerRuntime/anthropic.ts +576 -0
- package/src/core/providerRuntime/capabilityProfile.test.ts +311 -0
- package/src/core/providerRuntime/capabilityProfile.ts +288 -0
- package/src/core/providerRuntime/claudeCodeDiscovery.ts +446 -0
- package/src/core/providerRuntime/contextMetadata.test.ts +468 -0
- package/src/core/providerRuntime/contextMetadata.ts +409 -0
- package/src/core/providerRuntime/gemini.test.ts +437 -0
- package/src/core/providerRuntime/gemini.ts +784 -0
- package/src/core/providerRuntime/lmstudio.test.ts +168 -0
- package/src/core/providerRuntime/lmstudio.ts +118 -0
- package/src/core/providerRuntime/local.test.ts +787 -0
- package/src/core/providerRuntime/local.ts +754 -0
- package/src/core/providerRuntime/models.ts +150 -0
- package/src/core/providerRuntime/reasoning.ts +17 -0
- package/src/core/providerRuntime/registry.test.ts +233 -0
- package/src/core/providerRuntime/registry.ts +203 -0
- package/src/core/providerRuntime/types.ts +103 -0
- package/src/core/providers/codexJsonStream.test.ts +148 -0
- package/src/core/providers/codexJsonStream.ts +305 -0
- package/src/core/providers/codexSubprocess.test.ts +68 -0
- package/src/core/providers/codexSubprocess.ts +372 -0
- package/src/core/providers/codexTranscript.test.ts +284 -0
- package/src/core/providers/codexTranscript.ts +695 -0
- package/src/core/providers/openaiNative.ts +13 -0
- package/src/core/providers/registry.ts +21 -0
- package/src/core/providers/types.ts +59 -0
- package/src/core/terminal/terminalCapabilities.test.ts +93 -0
- package/src/core/terminal/terminalCapabilities.ts +100 -0
- package/src/core/terminal/terminalControl.test.ts +75 -0
- package/src/core/terminal/terminalControl.ts +147 -0
- package/src/core/terminal/terminalSanitize.test.ts +22 -0
- package/src/core/terminal/terminalSanitize.ts +147 -0
- package/src/core/terminal/terminalSelection.test.ts +42 -0
- package/src/core/terminal/terminalSelection.ts +66 -0
- package/src/core/terminal/terminalTitle.test.ts +328 -0
- package/src/core/terminal/terminalTitle.ts +483 -0
- package/src/core/workspaceActivity.test.ts +163 -0
- package/src/core/workspaceActivity.ts +380 -0
- package/src/core/workspaceGuard.test.ts +151 -0
- package/src/core/workspaceGuard.ts +288 -0
- package/src/core/workspaceRoot.test.ts +23 -0
- package/src/core/workspaceRoot.ts +47 -0
- package/src/exec.test.ts +13 -0
- package/src/exec.ts +72 -0
- package/src/headless/execArgs.test.ts +147 -0
- package/src/headless/execArgs.ts +294 -0
- package/src/headless/execRunner.test.ts +434 -0
- package/src/headless/execRunner.ts +304 -0
- package/src/index.test.tsx +618 -0
- package/src/index.tsx +296 -0
- package/src/session/appSession.test.ts +897 -0
- package/src/session/appSession.ts +761 -0
- package/src/session/chatLifecycle.test.ts +64 -0
- package/src/session/chatLifecycle.ts +951 -0
- package/src/session/liveRenderScheduler.test.ts +201 -0
- package/src/session/liveRenderScheduler.ts +214 -0
- package/src/session/planFlow.test.ts +103 -0
- package/src/session/planFlow.ts +149 -0
- package/src/session/planTranscript.test.ts +65 -0
- package/src/session/planTranscript.ts +15 -0
- package/src/session/promptRunSchedule.test.ts +36 -0
- package/src/session/promptRunSchedule.ts +26 -0
- package/src/session/types.ts +228 -0
- package/src/test/runtimeTestUtils.ts +14 -0
- package/src/types/react-dom.d.ts +3 -0
- package/src/ui/ActionRequiredBlock.tsx +38 -0
- package/src/ui/ActivityBars.tsx +68 -0
- package/src/ui/ActivityIndicator.test.tsx +58 -0
- package/src/ui/ActivityIndicator.tsx +58 -0
- package/src/ui/AgentBlock.test.ts +6 -0
- package/src/ui/AgentBlock.tsx +130 -0
- package/src/ui/AnimatedStatusText.test.ts +16 -0
- package/src/ui/AnimatedStatusText.tsx +69 -0
- package/src/ui/AppShell.test.tsx +1739 -0
- package/src/ui/AppShell.tsx +698 -0
- package/src/ui/AttachmentImportPanel.test.tsx +204 -0
- package/src/ui/AttachmentImportPanel.tsx +98 -0
- package/src/ui/AuthPanel.tsx +113 -0
- package/src/ui/BackendPicker.tsx +28 -0
- package/src/ui/BottomComposer.test.ts +674 -0
- package/src/ui/BottomComposer.tsx +1028 -0
- package/src/ui/CodexLogo.tsx +55 -0
- package/src/ui/DashCard.tsx +82 -0
- package/src/ui/Markdown.test.ts +157 -0
- package/src/ui/Markdown.tsx +310 -0
- package/src/ui/ModePicker.tsx +27 -0
- package/src/ui/ModelPicker.tsx +31 -0
- package/src/ui/ModelPickerProviderScope.test.tsx +411 -0
- package/src/ui/ModelPickerScreen.test.tsx +99 -0
- package/src/ui/ModelPickerScreen.tsx +416 -0
- package/src/ui/ModelPickerState.test.tsx +151 -0
- package/src/ui/ModelReasoningPicker.test.tsx +447 -0
- package/src/ui/ModelReasoningPicker.tsx +458 -0
- package/src/ui/Panel.tsx +51 -0
- package/src/ui/PermissionsPanel.tsx +78 -0
- package/src/ui/PlanActionPicker.tsx +119 -0
- package/src/ui/PlanReviewPanel.test.tsx +267 -0
- package/src/ui/PlanReviewPanel.tsx +212 -0
- package/src/ui/PromptCardBorder.test.tsx +161 -0
- package/src/ui/ProviderPicker.test.tsx +289 -0
- package/src/ui/ProviderPicker.tsx +321 -0
- package/src/ui/ProviderShortcut.test.tsx +143 -0
- package/src/ui/ReasoningPicker.tsx +46 -0
- package/src/ui/RunFooter.tsx +65 -0
- package/src/ui/SelectionPanel.tsx +67 -0
- package/src/ui/SettingsPanel.test.tsx +233 -0
- package/src/ui/SettingsPanel.tsx +156 -0
- package/src/ui/Spinner.tsx +25 -0
- package/src/ui/StaticIntroItem.tsx +54 -0
- package/src/ui/StaticTranscriptItem.tsx +56 -0
- package/src/ui/TextEntryPanel.tsx +139 -0
- package/src/ui/ThemePicker.tsx +31 -0
- package/src/ui/ThinkingBlock.tsx +100 -0
- package/src/ui/Timeline.test.ts +2067 -0
- package/src/ui/Timeline.tsx +1472 -0
- package/src/ui/TimelineNavigation.test.tsx +201 -0
- package/src/ui/TopHeader.test.tsx +239 -0
- package/src/ui/TopHeader.tsx +257 -0
- package/src/ui/TurnGroup.test.tsx +365 -0
- package/src/ui/TurnGroup.tsx +657 -0
- package/src/ui/busyStatusAnimation.test.ts +30 -0
- package/src/ui/busyStatusAnimation.ts +11 -0
- package/src/ui/commandNormalize.test.ts +142 -0
- package/src/ui/commandNormalize.ts +66 -0
- package/src/ui/diffRenderer.test.ts +102 -0
- package/src/ui/diffRenderer.ts +116 -0
- package/src/ui/focus.ts +61 -0
- package/src/ui/focusFlow.test.tsx +1098 -0
- package/src/ui/inputBuffer.test.ts +151 -0
- package/src/ui/inputBuffer.ts +203 -0
- package/src/ui/layout.test.ts +145 -0
- package/src/ui/layout.ts +287 -0
- package/src/ui/modeDisplay.test.ts +42 -0
- package/src/ui/modeDisplay.ts +52 -0
- package/src/ui/outputPipeline.ts +64 -0
- package/src/ui/progressEntries.ts +156 -0
- package/src/ui/runActivityView.test.ts +89 -0
- package/src/ui/runActivityView.ts +37 -0
- package/src/ui/runLifecycleView.test.tsx +237 -0
- package/src/ui/slashCommands.ts +41 -0
- package/src/ui/statusRenderIsolation.test.tsx +654 -0
- package/src/ui/terminalAnswerFormat.test.ts +19 -0
- package/src/ui/terminalAnswerFormat.ts +128 -0
- package/src/ui/textLayout.test.ts +18 -0
- package/src/ui/textLayout.ts +338 -0
- package/src/ui/theme.tsx +395 -0
- package/src/ui/themeFlow.test.ts +53 -0
- package/src/ui/themeFlow.ts +41 -0
- package/src/ui/timelineMeasure.ts +3088 -0
- package/src/ui/timelineMeasureCache.test.ts +986 -0
- package/src/ui/useThrottledValue.ts +31 -0
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
import assert from "node:assert/strict";
|
|
2
|
+
import test from "node:test";
|
|
3
|
+
import {
|
|
4
|
+
clearModelCapabilityProfileCache,
|
|
5
|
+
resolveModelCapabilityProfileCached,
|
|
6
|
+
} from "./capabilityProfile.js";
|
|
7
|
+
|
|
8
|
+
test("raw API supports_system_prompt: false sets supportsSystemPrompt false with api/verified", () => {
|
|
9
|
+
clearModelCapabilityProfileCache();
|
|
10
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
11
|
+
providerId: "local",
|
|
12
|
+
modelId: "test-model",
|
|
13
|
+
rawMetadata: {
|
|
14
|
+
id: "test-model",
|
|
15
|
+
supports_system_prompt: false,
|
|
16
|
+
},
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
assert.equal(profile.supportsSystemPrompt, false);
|
|
20
|
+
assert.equal(profile.source, "api");
|
|
21
|
+
assert.equal(profile.confidence, "verified");
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
test("raw API supportsStreaming: true (camelCase) is detected", () => {
|
|
25
|
+
clearModelCapabilityProfileCache();
|
|
26
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
27
|
+
providerId: "local",
|
|
28
|
+
modelId: "test-model",
|
|
29
|
+
rawMetadata: {
|
|
30
|
+
id: "test-model",
|
|
31
|
+
supportsStreaming: true,
|
|
32
|
+
},
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
assert.equal(profile.supportsStreaming, true);
|
|
36
|
+
assert.equal(profile.source, "api");
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
test("nested model_info.supports_tool_calls is detected", () => {
|
|
40
|
+
clearModelCapabilityProfileCache();
|
|
41
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
42
|
+
providerId: "local",
|
|
43
|
+
modelId: "test-model",
|
|
44
|
+
rawMetadata: {
|
|
45
|
+
id: "test-model",
|
|
46
|
+
model_info: {
|
|
47
|
+
supports_tool_calls: true,
|
|
48
|
+
max_output_tokens: 2048,
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
assert.equal(profile.supportsToolCalls, true);
|
|
54
|
+
assert.equal(profile.maxOutputTokens, 2048);
|
|
55
|
+
assert.equal(profile.source, "api");
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
test("raw API with no capability fields returns all-null profile with unknown source", () => {
|
|
59
|
+
clearModelCapabilityProfileCache();
|
|
60
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
61
|
+
providerId: "local",
|
|
62
|
+
modelId: "no-caps-model",
|
|
63
|
+
rawMetadata: {
|
|
64
|
+
id: "no-caps-model",
|
|
65
|
+
object: "model",
|
|
66
|
+
},
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
assert.equal(profile.supportsSystemPrompt, null);
|
|
70
|
+
assert.equal(profile.supportsStreaming, null);
|
|
71
|
+
assert.equal(profile.supportsToolCalls, null);
|
|
72
|
+
assert.equal(profile.maxOutputTokens, null);
|
|
73
|
+
assert.equal(profile.source, "unknown");
|
|
74
|
+
assert.equal(profile.confidence, "unknown");
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
test("config override supportsSystemPrompt: false applies when no raw metadata", () => {
|
|
78
|
+
clearModelCapabilityProfileCache();
|
|
79
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
80
|
+
providerId: "local",
|
|
81
|
+
modelId: "config-model",
|
|
82
|
+
providerConfig: {
|
|
83
|
+
models: {
|
|
84
|
+
"config-model": {
|
|
85
|
+
supportsSystemPrompt: false,
|
|
86
|
+
supportsStreaming: true,
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
assert.equal(profile.supportsSystemPrompt, false);
|
|
93
|
+
assert.equal(profile.supportsStreaming, true);
|
|
94
|
+
assert.equal(profile.source, "config");
|
|
95
|
+
assert.equal(profile.confidence, "configured");
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
test("config override rejects non-boolean string values", () => {
|
|
99
|
+
clearModelCapabilityProfileCache();
|
|
100
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
101
|
+
providerId: "local",
|
|
102
|
+
modelId: "bad-model",
|
|
103
|
+
providerConfig: {
|
|
104
|
+
models: {
|
|
105
|
+
"bad-model": {
|
|
106
|
+
// TypeScript would reject these, but test that runtime parsing rejects them too
|
|
107
|
+
supportsStreaming: "true" as unknown as boolean,
|
|
108
|
+
},
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
// A string "true" is not a boolean — should fall through to unknown
|
|
114
|
+
assert.equal(profile.supportsStreaming, null);
|
|
115
|
+
assert.equal(profile.source, "unknown");
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
test("config override maxOutputTokens: 4096 applies; negative is rejected", () => {
|
|
119
|
+
clearModelCapabilityProfileCache();
|
|
120
|
+
const validProfile = resolveModelCapabilityProfileCached({
|
|
121
|
+
providerId: "local",
|
|
122
|
+
modelId: "model-a",
|
|
123
|
+
providerConfig: {
|
|
124
|
+
models: {
|
|
125
|
+
"model-a": { maxOutputTokens: 4096 },
|
|
126
|
+
},
|
|
127
|
+
},
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
assert.equal(validProfile.maxOutputTokens, 4096);
|
|
131
|
+
assert.equal(validProfile.source, "config");
|
|
132
|
+
|
|
133
|
+
clearModelCapabilityProfileCache();
|
|
134
|
+
const invalidProfile = resolveModelCapabilityProfileCached({
|
|
135
|
+
providerId: "local",
|
|
136
|
+
modelId: "model-b",
|
|
137
|
+
providerConfig: {
|
|
138
|
+
models: {
|
|
139
|
+
"model-b": { maxOutputTokens: -1 },
|
|
140
|
+
},
|
|
141
|
+
},
|
|
142
|
+
});
|
|
143
|
+
|
|
144
|
+
assert.equal(invalidProfile.maxOutputTokens, null);
|
|
145
|
+
assert.equal(invalidProfile.source, "unknown");
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
test("known registry is initially empty — all models return unknown without raw/config", () => {
|
|
149
|
+
clearModelCapabilityProfileCache();
|
|
150
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
151
|
+
providerId: "google",
|
|
152
|
+
modelId: "gemini-2.5-pro",
|
|
153
|
+
});
|
|
154
|
+
|
|
155
|
+
assert.equal(profile.source, "unknown");
|
|
156
|
+
assert.equal(profile.supportsStreaming, null);
|
|
157
|
+
assert.equal(profile.supportsToolCalls, null);
|
|
158
|
+
});
|
|
159
|
+
|
|
160
|
+
test("raw API for non-local providers returns unknown (only local queries /v1/models)", () => {
|
|
161
|
+
clearModelCapabilityProfileCache();
|
|
162
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
163
|
+
providerId: "anthropic",
|
|
164
|
+
modelId: "claude-sonnet-4-6",
|
|
165
|
+
rawMetadata: {
|
|
166
|
+
id: "claude-sonnet-4-6",
|
|
167
|
+
supports_streaming: true,
|
|
168
|
+
},
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
// Non-local providers don't scan raw metadata
|
|
172
|
+
assert.equal(profile.source, "unknown");
|
|
173
|
+
assert.equal(profile.supportsStreaming, null);
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
test("capability cache is upgraded from unknown when raw API metadata arrives", () => {
|
|
177
|
+
clearModelCapabilityProfileCache();
|
|
178
|
+
|
|
179
|
+
const first = resolveModelCapabilityProfileCached({
|
|
180
|
+
providerId: "local",
|
|
181
|
+
modelId: "upgrade-model",
|
|
182
|
+
});
|
|
183
|
+
|
|
184
|
+
const second = resolveModelCapabilityProfileCached({
|
|
185
|
+
providerId: "local",
|
|
186
|
+
modelId: "upgrade-model",
|
|
187
|
+
rawMetadata: {
|
|
188
|
+
id: "upgrade-model",
|
|
189
|
+
supports_tool_calls: false,
|
|
190
|
+
},
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
const third = resolveModelCapabilityProfileCached({
|
|
194
|
+
providerId: "local",
|
|
195
|
+
modelId: "upgrade-model",
|
|
196
|
+
});
|
|
197
|
+
|
|
198
|
+
assert.equal(first.source, "unknown");
|
|
199
|
+
assert.equal(first.supportsToolCalls, null);
|
|
200
|
+
assert.equal(second.source, "api");
|
|
201
|
+
assert.equal(second.supportsToolCalls, false);
|
|
202
|
+
// Third call hits the upgraded cache
|
|
203
|
+
assert.equal(third.source, "api");
|
|
204
|
+
assert.equal(third.supportsToolCalls, false);
|
|
205
|
+
});
|
|
206
|
+
|
|
207
|
+
test("clearModelCapabilityProfileCache resets all cached profiles", () => {
|
|
208
|
+
const profile1 = resolveModelCapabilityProfileCached({
|
|
209
|
+
providerId: "local",
|
|
210
|
+
modelId: "clear-test-model",
|
|
211
|
+
rawMetadata: { id: "clear-test-model", supports_streaming: true },
|
|
212
|
+
});
|
|
213
|
+
assert.equal(profile1.supportsStreaming, true);
|
|
214
|
+
|
|
215
|
+
clearModelCapabilityProfileCache();
|
|
216
|
+
|
|
217
|
+
const profile2 = resolveModelCapabilityProfileCached({
|
|
218
|
+
providerId: "local",
|
|
219
|
+
modelId: "clear-test-model",
|
|
220
|
+
});
|
|
221
|
+
assert.equal(profile2.supportsStreaming, null);
|
|
222
|
+
assert.equal(profile2.source, "unknown");
|
|
223
|
+
});
|
|
224
|
+
|
|
225
|
+
test("capabilities: ['tool_use'] sets supportsToolCalls true with api source", () => {
|
|
226
|
+
clearModelCapabilityProfileCache();
|
|
227
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
228
|
+
providerId: "local",
|
|
229
|
+
modelId: "gemma-tools",
|
|
230
|
+
rawMetadata: {
|
|
231
|
+
id: "gemma-tools",
|
|
232
|
+
capabilities: ["tool_use"],
|
|
233
|
+
},
|
|
234
|
+
});
|
|
235
|
+
|
|
236
|
+
assert.equal(profile.supportsToolCalls, true);
|
|
237
|
+
assert.equal(profile.source, "api");
|
|
238
|
+
assert.equal(profile.confidence, "verified");
|
|
239
|
+
});
|
|
240
|
+
|
|
241
|
+
test("capabilities: ['vision'] without tool_use leaves supportsToolCalls null (absence != false)", () => {
|
|
242
|
+
clearModelCapabilityProfileCache();
|
|
243
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
244
|
+
providerId: "local",
|
|
245
|
+
modelId: "vision-only",
|
|
246
|
+
rawMetadata: {
|
|
247
|
+
id: "vision-only",
|
|
248
|
+
capabilities: ["vision"],
|
|
249
|
+
},
|
|
250
|
+
});
|
|
251
|
+
|
|
252
|
+
assert.equal(profile.supportsToolCalls, null);
|
|
253
|
+
assert.equal(profile.source, "unknown");
|
|
254
|
+
});
|
|
255
|
+
|
|
256
|
+
test("capabilities: [] (empty array) leaves all capabilities null", () => {
|
|
257
|
+
clearModelCapabilityProfileCache();
|
|
258
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
259
|
+
providerId: "local",
|
|
260
|
+
modelId: "no-caps",
|
|
261
|
+
rawMetadata: {
|
|
262
|
+
id: "no-caps",
|
|
263
|
+
capabilities: [],
|
|
264
|
+
},
|
|
265
|
+
});
|
|
266
|
+
|
|
267
|
+
assert.equal(profile.supportsToolCalls, null);
|
|
268
|
+
assert.equal(profile.source, "unknown");
|
|
269
|
+
});
|
|
270
|
+
|
|
271
|
+
test("type: 'vlm' alone does not set supportsVision (no automatic mapping)", () => {
|
|
272
|
+
clearModelCapabilityProfileCache();
|
|
273
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
274
|
+
providerId: "local",
|
|
275
|
+
modelId: "vlm-model",
|
|
276
|
+
rawMetadata: {
|
|
277
|
+
id: "vlm-model",
|
|
278
|
+
type: "vlm",
|
|
279
|
+
capabilities: ["tool_use"],
|
|
280
|
+
},
|
|
281
|
+
});
|
|
282
|
+
|
|
283
|
+
assert.equal(profile.supportsVision, null);
|
|
284
|
+
assert.equal(profile.supportsToolCalls, true);
|
|
285
|
+
});
|
|
286
|
+
|
|
287
|
+
test("full LM Studio fixture: supportsToolCalls true, supportsVision null", () => {
|
|
288
|
+
clearModelCapabilityProfileCache();
|
|
289
|
+
const fixture = {
|
|
290
|
+
id: "google/gemma-4-26b-a4b",
|
|
291
|
+
object: "model",
|
|
292
|
+
type: "vlm",
|
|
293
|
+
publisher: "google",
|
|
294
|
+
arch: "gemma4",
|
|
295
|
+
compatibility_type: "gguf",
|
|
296
|
+
quantization: "Q4_K_M",
|
|
297
|
+
state: "loaded",
|
|
298
|
+
max_context_length: 262144,
|
|
299
|
+
loaded_context_length: 64000,
|
|
300
|
+
capabilities: ["tool_use"],
|
|
301
|
+
};
|
|
302
|
+
const profile = resolveModelCapabilityProfileCached({
|
|
303
|
+
providerId: "local",
|
|
304
|
+
modelId: "google/gemma-4-26b-a4b",
|
|
305
|
+
rawMetadata: fixture,
|
|
306
|
+
});
|
|
307
|
+
|
|
308
|
+
assert.equal(profile.supportsToolCalls, true);
|
|
309
|
+
assert.equal(profile.supportsVision, null);
|
|
310
|
+
assert.equal(profile.source, "api");
|
|
311
|
+
});
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
import type { ProviderId, ProviderWorkspaceOverride } from "../providerLauncher/types.js";
|
|
2
|
+
|
|
3
|
+
export type CapabilitySource = "api" | "cli" | "config" | "known-registry" | "unknown";
|
|
4
|
+
export type CapabilityConfidence = "verified" | "configured" | "known" | "unknown";
|
|
5
|
+
|
|
6
|
+
export interface ModelCapabilityProfile {
|
|
7
|
+
providerId: ProviderId;
|
|
8
|
+
modelId: string;
|
|
9
|
+
maxOutputTokens: number | null;
|
|
10
|
+
supportsStreaming: boolean | null;
|
|
11
|
+
supportsToolCalls: boolean | null;
|
|
12
|
+
supportsSystemPrompt: boolean | null;
|
|
13
|
+
supportsVision: boolean | null;
|
|
14
|
+
source: CapabilitySource;
|
|
15
|
+
confidence: CapabilityConfidence;
|
|
16
|
+
raw?: unknown;
|
|
17
|
+
error?: string;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface ResolveModelCapabilityProfileOptions {
|
|
21
|
+
providerId: ProviderId;
|
|
22
|
+
modelId: string;
|
|
23
|
+
providerConfig?: ProviderWorkspaceOverride | null;
|
|
24
|
+
rawMetadata?: unknown;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
interface KnownCapabilityRegistryEntry {
|
|
28
|
+
maxOutputTokens?: number;
|
|
29
|
+
supportsStreaming?: boolean;
|
|
30
|
+
supportsToolCalls?: boolean;
|
|
31
|
+
supportsSystemPrompt?: boolean;
|
|
32
|
+
supportsVision?: boolean;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Empty by default — only exact "providerId:modelId" matches are allowed.
|
|
36
|
+
// Do NOT add wildcard or family-based entries.
|
|
37
|
+
const KNOWN_CAPABILITY_REGISTRY: Record<string, KnownCapabilityRegistryEntry> = {};
|
|
38
|
+
|
|
39
|
+
const SYSTEM_PROMPT_CANDIDATES = [
|
|
40
|
+
"supports_system_prompt",
|
|
41
|
+
"supportsSystemPrompt",
|
|
42
|
+
"system_prompt",
|
|
43
|
+
"has_system_prompt",
|
|
44
|
+
] as const;
|
|
45
|
+
|
|
46
|
+
const STREAMING_CANDIDATES = [
|
|
47
|
+
"supports_streaming",
|
|
48
|
+
"supportsStreaming",
|
|
49
|
+
"streaming",
|
|
50
|
+
"stream_supported",
|
|
51
|
+
] as const;
|
|
52
|
+
|
|
53
|
+
const TOOL_CALLS_CANDIDATES = [
|
|
54
|
+
"supports_tool_calls",
|
|
55
|
+
"supportsToolCalls",
|
|
56
|
+
"tool_calls",
|
|
57
|
+
"supports_tools",
|
|
58
|
+
"function_calling",
|
|
59
|
+
"has_tools",
|
|
60
|
+
] as const;
|
|
61
|
+
|
|
62
|
+
const MAX_OUTPUT_TOKENS_CANDIDATES = [
|
|
63
|
+
"max_output_tokens",
|
|
64
|
+
"maxOutputTokens",
|
|
65
|
+
"max_new_tokens",
|
|
66
|
+
"max_tokens_output",
|
|
67
|
+
] as const;
|
|
68
|
+
|
|
69
|
+
const NESTED_METADATA_KEYS = [
|
|
70
|
+
"model_info",
|
|
71
|
+
"modelInfo",
|
|
72
|
+
"metadata",
|
|
73
|
+
"details",
|
|
74
|
+
"config",
|
|
75
|
+
] as const;
|
|
76
|
+
|
|
77
|
+
const capabilityCache = new Map<string, ModelCapabilityProfile>();
|
|
78
|
+
|
|
79
|
+
function isRecord(value: unknown): value is Record<string, unknown> {
|
|
80
|
+
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
function validBoolean(value: unknown): boolean | null {
|
|
84
|
+
if (value === true || value === false) return value;
|
|
85
|
+
return null;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
function validPositiveInteger(value: unknown): number | null {
|
|
89
|
+
if (typeof value !== "number" || !Number.isInteger(value) || value <= 0) return null;
|
|
90
|
+
return value;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
function cacheKey(options: ResolveModelCapabilityProfileOptions): string {
|
|
94
|
+
return JSON.stringify({
|
|
95
|
+
providerId: options.providerId,
|
|
96
|
+
modelId: options.modelId,
|
|
97
|
+
models: options.providerConfig?.models ?? null,
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export function clearModelCapabilityProfileCache(): void {
|
|
102
|
+
capabilityCache.clear();
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
function unknownProfile(
|
|
106
|
+
providerId: ProviderId,
|
|
107
|
+
modelId: string,
|
|
108
|
+
error?: string,
|
|
109
|
+
): ModelCapabilityProfile {
|
|
110
|
+
return {
|
|
111
|
+
providerId,
|
|
112
|
+
modelId,
|
|
113
|
+
maxOutputTokens: null,
|
|
114
|
+
supportsStreaming: null,
|
|
115
|
+
supportsToolCalls: null,
|
|
116
|
+
supportsSystemPrompt: null,
|
|
117
|
+
supportsVision: null,
|
|
118
|
+
source: "unknown",
|
|
119
|
+
confidence: "unknown",
|
|
120
|
+
...(error ? { error } : {}),
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
function findBooleanField(
|
|
125
|
+
raw: Record<string, unknown>,
|
|
126
|
+
candidates: readonly string[],
|
|
127
|
+
): boolean | null {
|
|
128
|
+
for (const field of candidates) {
|
|
129
|
+
const value = validBoolean(raw[field]);
|
|
130
|
+
if (value !== null) return value;
|
|
131
|
+
}
|
|
132
|
+
for (const nestedKey of NESTED_METADATA_KEYS) {
|
|
133
|
+
const nested = raw[nestedKey];
|
|
134
|
+
if (!isRecord(nested)) continue;
|
|
135
|
+
for (const field of candidates) {
|
|
136
|
+
const value = validBoolean(nested[field]);
|
|
137
|
+
if (value !== null) return value;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
return null;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
function findIntegerField(
|
|
144
|
+
raw: Record<string, unknown>,
|
|
145
|
+
candidates: readonly string[],
|
|
146
|
+
): number | null {
|
|
147
|
+
for (const field of candidates) {
|
|
148
|
+
const value = validPositiveInteger(raw[field]);
|
|
149
|
+
if (value !== null) return value;
|
|
150
|
+
}
|
|
151
|
+
for (const nestedKey of NESTED_METADATA_KEYS) {
|
|
152
|
+
const nested = raw[nestedKey];
|
|
153
|
+
if (!isRecord(nested)) continue;
|
|
154
|
+
for (const field of candidates) {
|
|
155
|
+
const value = validPositiveInteger(nested[field]);
|
|
156
|
+
if (value !== null) return value;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
return null;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
function resolveFromRawMetadata(
|
|
163
|
+
providerId: ProviderId,
|
|
164
|
+
modelId: string,
|
|
165
|
+
raw: unknown,
|
|
166
|
+
): ModelCapabilityProfile | null {
|
|
167
|
+
if (providerId !== "local") return null;
|
|
168
|
+
if (!isRecord(raw)) return null;
|
|
169
|
+
|
|
170
|
+
const supportsSystemPrompt = findBooleanField(raw, SYSTEM_PROMPT_CANDIDATES);
|
|
171
|
+
const supportsStreaming = findBooleanField(raw, STREAMING_CANDIDATES);
|
|
172
|
+
let supportsToolCalls = findBooleanField(raw, TOOL_CALLS_CANDIDATES);
|
|
173
|
+
const maxOutputTokens = findIntegerField(raw, MAX_OUTPUT_TOKENS_CANDIDATES);
|
|
174
|
+
|
|
175
|
+
if (supportsToolCalls === null && Array.isArray(raw.capabilities)) {
|
|
176
|
+
if ((raw.capabilities as unknown[]).includes("tool_use")) {
|
|
177
|
+
supportsToolCalls = true;
|
|
178
|
+
}
|
|
179
|
+
// absence of "tool_use" in capabilities ≠ not supported — leave null
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
if (
|
|
183
|
+
supportsSystemPrompt === null
|
|
184
|
+
&& supportsStreaming === null
|
|
185
|
+
&& supportsToolCalls === null
|
|
186
|
+
&& maxOutputTokens === null
|
|
187
|
+
) {
|
|
188
|
+
return null;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
return {
|
|
192
|
+
providerId,
|
|
193
|
+
modelId,
|
|
194
|
+
maxOutputTokens,
|
|
195
|
+
supportsStreaming,
|
|
196
|
+
supportsToolCalls,
|
|
197
|
+
supportsSystemPrompt,
|
|
198
|
+
supportsVision: null,
|
|
199
|
+
source: "api",
|
|
200
|
+
confidence: "verified",
|
|
201
|
+
raw,
|
|
202
|
+
};
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
function resolveFromConfig(
|
|
206
|
+
providerId: ProviderId,
|
|
207
|
+
modelId: string,
|
|
208
|
+
providerConfig?: ProviderWorkspaceOverride | null,
|
|
209
|
+
): ModelCapabilityProfile | null {
|
|
210
|
+
const modelOverride = providerConfig?.models?.[modelId];
|
|
211
|
+
if (!modelOverride) return null;
|
|
212
|
+
|
|
213
|
+
const supportsStreaming = validBoolean(modelOverride.supportsStreaming);
|
|
214
|
+
const supportsToolCalls = validBoolean(modelOverride.supportsToolCalls);
|
|
215
|
+
const supportsSystemPrompt = validBoolean(modelOverride.supportsSystemPrompt);
|
|
216
|
+
const maxOutputTokens = validPositiveInteger(modelOverride.maxOutputTokens);
|
|
217
|
+
|
|
218
|
+
const hasAny =
|
|
219
|
+
supportsSystemPrompt !== null
|
|
220
|
+
|| supportsStreaming !== null
|
|
221
|
+
|| supportsToolCalls !== null
|
|
222
|
+
|| maxOutputTokens !== null;
|
|
223
|
+
|
|
224
|
+
if (!hasAny) return null;
|
|
225
|
+
|
|
226
|
+
return {
|
|
227
|
+
providerId,
|
|
228
|
+
modelId,
|
|
229
|
+
maxOutputTokens,
|
|
230
|
+
supportsStreaming,
|
|
231
|
+
supportsToolCalls,
|
|
232
|
+
supportsSystemPrompt,
|
|
233
|
+
supportsVision: validBoolean(modelOverride.supportsVision),
|
|
234
|
+
source: "config",
|
|
235
|
+
confidence: "configured",
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
function resolveFromKnownRegistry(
|
|
240
|
+
providerId: ProviderId,
|
|
241
|
+
modelId: string,
|
|
242
|
+
): ModelCapabilityProfile | null {
|
|
243
|
+
const entry = KNOWN_CAPABILITY_REGISTRY[`${providerId}:${modelId}`];
|
|
244
|
+
if (!entry) return null;
|
|
245
|
+
return {
|
|
246
|
+
providerId,
|
|
247
|
+
modelId,
|
|
248
|
+
maxOutputTokens: entry.maxOutputTokens ?? null,
|
|
249
|
+
supportsStreaming: entry.supportsStreaming ?? null,
|
|
250
|
+
supportsToolCalls: entry.supportsToolCalls ?? null,
|
|
251
|
+
supportsSystemPrompt: entry.supportsSystemPrompt ?? null,
|
|
252
|
+
supportsVision: entry.supportsVision ?? null,
|
|
253
|
+
source: "known-registry",
|
|
254
|
+
confidence: "known",
|
|
255
|
+
};
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export function resolveModelCapabilityProfileCached(
|
|
259
|
+
options: ResolveModelCapabilityProfileOptions,
|
|
260
|
+
): ModelCapabilityProfile {
|
|
261
|
+
const key = cacheKey(options);
|
|
262
|
+
const cached = capabilityCache.get(key);
|
|
263
|
+
if (cached && !(options.rawMetadata !== undefined && cached.source === "unknown")) {
|
|
264
|
+
return cached;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
const raw = resolveFromRawMetadata(options.providerId, options.modelId, options.rawMetadata);
|
|
268
|
+
if (raw) {
|
|
269
|
+
capabilityCache.set(key, raw);
|
|
270
|
+
return raw;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
const config = resolveFromConfig(options.providerId, options.modelId, options.providerConfig);
|
|
274
|
+
if (config) {
|
|
275
|
+
capabilityCache.set(key, config);
|
|
276
|
+
return config;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
const registry = resolveFromKnownRegistry(options.providerId, options.modelId);
|
|
280
|
+
if (registry) {
|
|
281
|
+
capabilityCache.set(key, registry);
|
|
282
|
+
return registry;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
const result = unknownProfile(options.providerId, options.modelId);
|
|
286
|
+
capabilityCache.set(key, result);
|
|
287
|
+
return result;
|
|
288
|
+
}
|