mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Machine-produced by `pnpm run rescope-vendor --apply` plus the regeneration it prints: `pnpm install` for the lockfile, `pnpm run gen-third-party-notices`, `verify-translation-pairing --write` for the touched bilingual pairs, `gen-doc-graphs`, and one typert snapshot whose ids embed character offsets. `pnpm run rescope-vendor --check` verifies the result. Renames nine vendored packages (cordis, cosmokit, schemastery and the six @cordisjs plugins) and every reference that resolves them: manifest names and dependency keys, module specifiers including declare-module merges, cordis.yml plugin names, tsconfig paths, every Markdown fence, and `docs/` prose. Directory names, upstream versions, and dependency ranges are unchanged, so vendor/README.md still reads as an upstream snapshot; its manifest table gains an upstream-name column so THIRD_PARTY_NOTICES keeps MIT attribution pointed at each fork's origin. The tutorial tier follows the rename end to end: its yaml fences named plugins the Loader can no longer resolve, its `ts ignore-check` fences disagreed with the compiled fences beside them, and its prose quoted both. The contracts that told readers to keep upstream names — the root convention and the vendoring cookbook's tree comment and manifest invariant — now say to rescope instead. Two rules read `@deepseek-ai/` as "another workspace plugin": the client bundle purity gate now names the vendored libraries a browser bundle inlines, and the files where a bare `cordis` is an agent-preset id keep that product data.
108 lines
3.7 KiB
TypeScript
108 lines
3.7 KiB
TypeScript
/**
|
|
* Default model selection for an Agent without a session-specific selection.
|
|
*
|
|
* @module @deepseek-ai/dsh-agent-default-model
|
|
*/
|
|
|
|
import { Context, Service } from '@deepseek-ai/cordis'
|
|
import z from '@deepseek-ai/schemastery'
|
|
import type { ModelSelection } from '@deepseek-ai/dsh-agent'
|
|
import { ReasoningEffortId } from '@deepseek-ai/dsh-llm'
|
|
import { installSettingsSection, settingsNamespace } from '@deepseek-ai/dsh-settings'
|
|
|
|
declare module '@deepseek-ai/cordis' {
|
|
interface Context {
|
|
/** Default model selection for Agents created without an explicit model. */
|
|
agentDefaultModel: AgentDefaultModelService
|
|
}
|
|
}
|
|
|
|
/** Settings namespace carrying the default model selection for future Agents. */
|
|
export const AGENT_DEFAULT_MODEL_SETTINGS_NAMESPACE = settingsNamespace('agent-default-model')
|
|
|
|
/** Stored and composed default model selection. */
|
|
export interface AgentDefaultModelSettings {
|
|
/** Registered provider route. */
|
|
provider: string
|
|
/** Provider-owned model id. */
|
|
model: string
|
|
/** Adapter-owned reasoning effort, or provider/default behavior when absent. */
|
|
reasoningEffort?: string
|
|
}
|
|
|
|
/** Schema of the default Agent model settings section. */
|
|
export const AGENT_DEFAULT_MODEL_SETTINGS_SCHEMA: z<AgentDefaultModelSettings> = z.object({
|
|
provider: z.string().required(),
|
|
model: z.string().required(),
|
|
reasoningEffort: z.string(),
|
|
})
|
|
|
|
/** Composition entry for the default model selection. */
|
|
export interface Config {
|
|
/** Registered provider route. */
|
|
provider: string
|
|
/** Provider-owned model id. */
|
|
model: string
|
|
}
|
|
|
|
/** Project stored settings onto the Agent-facing selection type. */
|
|
function selection(settings: AgentDefaultModelSettings): ModelSelection {
|
|
return {
|
|
provider: settings.provider,
|
|
model: settings.model,
|
|
...settings.reasoningEffort === undefined
|
|
? {}
|
|
: { reasoningEffort: ReasoningEffortId(settings.reasoningEffort) },
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Owns the default model selection independently of any Host or transport.
|
|
* The composition entry remains usable without a settings provider; when one
|
|
* is mounted, its user layer is read live.
|
|
*/
|
|
export class AgentDefaultModelService extends Service {
|
|
static Config: z<Config> = z.object({
|
|
provider: z.string().required(),
|
|
model: z.string().required(),
|
|
})
|
|
|
|
private source: () => AgentDefaultModelSettings
|
|
|
|
constructor(ctx: Context, config: Config) {
|
|
super(ctx, 'agentDefaultModel')
|
|
const entry: AgentDefaultModelSettings = { provider: config.provider, model: config.model }
|
|
this.source = () => entry
|
|
installSettingsSection(ctx, AGENT_DEFAULT_MODEL_SETTINGS_NAMESPACE, AGENT_DEFAULT_MODEL_SETTINGS_SCHEMA, entry, {
|
|
setSource: (current) => { this.source = current },
|
|
// Every consumer reads through currentSelection(), so no registration-level fact
|
|
// needs rebuilding when the settings document changes.
|
|
onChange: () => {},
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Read the current default model selection.
|
|
* @returns a detached provider, model, and optional reasoning selection.
|
|
*/
|
|
currentSelection(): ModelSelection {
|
|
return selection(this.source())
|
|
}
|
|
|
|
/**
|
|
* Save the complete default model selection. A deployment without a settings
|
|
* provider keeps its composition entry.
|
|
* @param next - resolved selection accepted by an entry point.
|
|
* @returns fulfillment after the optional settings write settles.
|
|
*/
|
|
async saveSelection(next: ModelSelection): Promise<void> {
|
|
await this.ctx.get('settings')?.replace(AGENT_DEFAULT_MODEL_SETTINGS_NAMESPACE, {
|
|
provider: next.provider,
|
|
model: next.model,
|
|
...next.reasoningEffort === undefined ? {} : { reasoningEffort: String(next.reasoningEffort) },
|
|
})
|
|
}
|
|
}
|
|
|
|
export default AgentDefaultModelService
|