feat: add DeepSeek Harness runtime

This commit is contained in:
lofyer
2026-08-14 10:04:34 +08:00
parent fca9888f83
commit 8286e120a1
69 changed files with 13660 additions and 351 deletions
+17
View File
@@ -3,8 +3,12 @@ import { join } from 'node:path'
export type BundledRuntimePaths = {
opencode: string
continue: string
deepseekHarness: string
}
export const bundledContinueVersion = '1.5.47'
export const bundledDeepSeekHarnessVersion = '0.1.0-rc.6'
export function resolveBundledRuntimePaths(input: {
appPath: string
resourcesPath: string
@@ -29,6 +33,13 @@ export function resolveBundledRuntimePaths(input: {
'continue',
'dist',
'cn.js'
),
deepseekHarness: join(
input.resourcesPath,
'app.asar.unpacked',
'out',
'main',
'deepseek-harness-host-bootstrap.js'
)
}
}
@@ -48,6 +59,12 @@ export function resolveBundledRuntimePaths(input: {
'cli',
'dist',
'cn.js'
),
deepseekHarness: join(
input.appPath,
'out',
'main',
'deepseek-harness-host-bootstrap.js'
)
}
}