feat: add model-aware DSH image input

DeepSeek Harness previously treated every selected model as text-only. It now carries the model profile's image capability through Main, the Utility Host, ACP, and Pi-AI, rejects unsupported images before model invocation, and validates supported JPEG/PNG data in a bounded process-local attachment store.

The Composer keeps universal controls on its first row, places OpenCode and Continue controls on a dedicated responsive row, and anchors context compaction without shifting the footer. Runtime supervision ownership for future Subagents and Jobs is documented for the right sidebar.

Release note: DeepSeek Harness 现可按所选模型连接的能力安全接收 JPEG/PNG 图片;Composer 同时将 Runtime 专属选择器移到独立一行,并固定上下文压缩入口。
This commit is contained in:
mesalogo
2026-08-16 23:30:54 +08:00
parent 18263a6b23
commit b751c70d75
30 changed files with 1589 additions and 187 deletions
+12 -2
View File
@@ -103,7 +103,7 @@ describe('createAgentRuntime model compatibility', () => {
)
})
it('creates DeepSeek Harness with a compatible HTTPS gateway profile', async () => {
it('forwards a compatible gateway profile to DeepSeek Harness', async () => {
const profile = {
id: '00000000-0000-4000-8000-000000000006',
name: 'OpenAI-compatible gateway',
@@ -111,9 +111,13 @@ describe('createAgentRuntime model compatibility', () => {
modelName: 'qwen-plus',
protocol: 'openai-chat-completions' as const,
authentication: 'api-key' as const,
supportsImageInput: true,
imageGenerationQuality: 'auto' as const,
apiKey: 'gateway-key'
}
const deepseekHarnessLauncher = vi
.fn()
.mockRejectedValue(new Error('stop after launch options'))
const runtime = createAgentRuntime(
process.cwd(),
settings({
@@ -122,10 +126,16 @@ describe('createAgentRuntime model compatibility', () => {
defaultModelProfileId: profile.id,
deepseekHarnessModelProfile: profile
}),
{ deepseekHarnessLauncher: vi.fn() }
{ deepseekHarnessLauncher }
)
expect(runtime.runtimeId).toBe('deepseek-harness')
await expect(runtime.getStatus()).resolves.toMatchObject({
available: false
})
expect(deepseekHarnessLauncher).toHaveBeenCalledWith(
expect.objectContaining({ supportsImageInput: true })
)
await runtime.dispose()
})