| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- /**
- * Web session model-directory and selection behavior: dynamic provider grouping,
- * provider-local catalog failures, logged-target restoration without stale
- * catalog injection, advisory pass-through models, and the prompt-assembly
- * boundary for a running selection change.
- */
- import { describe, expect, it } from 'vitest'
- import { Context } from 'cordis'
- import AgentRegistry, { agentEvents } from '@deepseek-ai/dsh-agent'
- import type { Agent } from '@deepseek-ai/dsh-agent'
- import LlmService, { LlmAdapter, ReasoningEffortId } from '@deepseek-ai/dsh-llm'
- import type {
- GenerateOptions, LlmCallConfig, LlmModelInfo, LlmModelReasoningInfo, LlmProviderInfo,
- LlmResolvedModelInfo, StreamChunk,
- } from '@deepseek-ai/dsh-llm'
- import SessionStore from '@deepseek-ai/dsh-session'
- import type { SessionId } from '@deepseek-ai/dsh-session'
- import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
- import UserInteractionService from '@deepseek-ai/dsh-user-interaction'
- import type { RpcRequest } from '@deepseek-ai/dsh-host-apiproxy/api/rpc'
- import { RpcId } from '@deepseek-ai/dsh-host-apiproxy/api/rpc'
- import { createApiProxy } from '../src/api-proxy.ts'
- let nextRpc = 1
- function request<P>(payload: P): RpcRequest<P> {
- return { rpcId: RpcId(`models-${String(nextRpc++)}`), payload }
- }
- class CatalogAdapter extends LlmAdapter {
- constructor(
- private readonly name: string,
- private readonly models: readonly LlmModelInfo[] | Error,
- private readonly reasoning?: LlmModelReasoningInfo,
- private readonly exactError?: Error,
- ) {
- super()
- }
- override providerInfo(provider: string): LlmProviderInfo {
- return { id: provider, name: this.name }
- }
- override listModels(): Promise<readonly LlmModelInfo[]> {
- return this.models instanceof Error
- ? Promise.reject(this.models)
- : Promise.resolve(this.models)
- }
- override resolveModel(provider: string, model: string): Promise<LlmResolvedModelInfo> {
- if (this.exactError !== undefined) return Promise.reject(this.exactError)
- return Promise.resolve({
- provider,
- id: model,
- name: model,
- ...this.reasoning === undefined ? {} : { reasoning: this.reasoning },
- })
- }
- override async *stream(_options: GenerateOptions): AsyncIterable<StreamChunk> {
- // Catalog tests never enter provider streaming.
- }
- }
- const REASONING: LlmModelReasoningInfo = {
- efforts: [
- { id: ReasoningEffortId('off'), name: 'Off' },
- { id: ReasoningEffortId('high'), name: 'High' },
- { id: ReasoningEffortId('max'), name: 'Max' },
- ],
- defaultEffort: ReasoningEffortId('high'),
- }
- async function harness(logged?: {
- provider: string
- model: string
- reasoningEffort?: ReasoningEffortId
- }): Promise<{
- ctx: Context
- agent: Agent
- sessionId: SessionId
- }> {
- const ctx = new Context()
- await ctx.plugin(SessionStore)
- await ctx.plugin(SystemPrompt, { persona: '' })
- await ctx.plugin(LlmService)
- await ctx.plugin(UserInteractionService)
- await ctx.plugin(AgentRegistry)
- ctx.llm.registerAdapter(['deepseek-official'], new CatalogAdapter('DeepSeek', [
- { provider: 'deepseek-official', id: 'deepseek-chat', name: 'DeepSeek Chat' },
- { provider: 'deepseek-official', id: 'deepseek-reasoner', name: 'DeepSeek Reasoner', description: 'Reasoning model' },
- ], REASONING))
- ctx.llm.registerAdapter(['broken'], new CatalogAdapter('Broken Provider', new Error('catalog offline')))
- ctx.llm.registerAdapter(['metadata-broken'], new CatalogAdapter('Metadata Broken', [
- { provider: 'metadata-broken', id: 'listed', name: 'Listed' },
- ], undefined, new Error('reasoning metadata offline')))
- ctx.llm.registerAdapter(['empty'], new CatalogAdapter('Empty Provider', []))
- ctx.llm.registerAdapter(['duplicate'], new CatalogAdapter('Duplicate Provider', [
- { provider: 'duplicate', id: 'same', name: 'Same' },
- { provider: 'duplicate', id: 'same', name: 'Same Again' },
- ]))
- const session = ctx.sessions.create()
- if (logged !== undefined) {
- session.append('request/header', { header: { config: logged }, reason: 'initial' })
- }
- const agent = {
- id: session.id,
- session,
- status: 'running',
- ctx,
- } as Agent
- ctx.agents.register(agent)
- return { ctx, agent, sessionId: session.id }
- }
- function expectValue<T>(response: { result: { ok: true; value: T } | { ok: false } }): T {
- if (!response.result.ok) throw new Error('expected successful response')
- return response.result.value
- }
- describe('Web session model selection', () => {
- it('groups successful providers and leaves an unlisted current target out of the catalog', async () => {
- const { ctx, sessionId } = await harness({
- provider: 'deepseek-official',
- model: 'private-preview',
- reasoningEffort: ReasoningEffortId('max'),
- })
- const api = createApiProxy(ctx, { defaultTarget: () => ({ provider: 'deepseek-official', model: 'deepseek-chat' }), cwd: '/tmp', workspaceRoot: '/tmp' })
- const catalog = expectValue(await api.sessions.models(request({ sessionId })))
- expect(catalog.current).toEqual({
- provider: 'deepseek-official',
- model: 'private-preview',
- reasoningEffort: 'max',
- })
- expect(catalog.groups).toEqual([{
- id: 'deepseek-official',
- name: 'DeepSeek',
- models: [
- { id: 'deepseek-chat', name: 'DeepSeek Chat', reasoning: REASONING },
- {
- id: 'deepseek-reasoner',
- name: 'DeepSeek Reasoner',
- description: 'Reasoning model',
- reasoning: REASONING,
- },
- ],
- }])
- expect(catalog.failures).toEqual([
- { id: 'broken', name: 'Broken Provider', message: 'catalog offline' },
- { id: 'metadata-broken', name: 'Metadata Broken', message: 'reasoning metadata offline' },
- {
- id: 'duplicate',
- name: 'Duplicate Provider',
- message: 'adapter returned invalid or duplicate model metadata for provider "duplicate"',
- },
- ])
- await ctx.fiber.dispose()
- })
- it('accepts an advisory-unlisted model, rejects an unavailable provider, and switches only after the next assembly', async () => {
- const { ctx, agent, sessionId } = await harness()
- const api = createApiProxy(ctx, { defaultTarget: () => ({ provider: 'deepseek-official', model: 'deepseek-chat' }), cwd: '/tmp', workspaceRoot: '/tmp' })
- const seed: LlmCallConfig = { provider: 'seed', model: 'seed', temperature: 0.2 }
- const signal = new AbortController().signal
- expect(expectValue(await api.sessions.models(request({ sessionId }))).current)
- .toEqual({ provider: 'deepseek-official', model: 'deepseek-chat' })
- expect((await ctx.systemPrompt.assemble()).variables)
- .toMatchObject({ provider: 'deepseek-official', model: 'deepseek-chat' })
- const selected = expectValue(await api.sessions.selectModel(request({
- sessionId,
- provider: 'deepseek-official',
- model: 'private-preview',
- reasoningEffort: 'max',
- })))
- expect(selected.selected).toEqual({
- provider: 'deepseek-official',
- model: 'private-preview',
- reasoningEffort: 'max',
- })
- await expect(agentEvents(ctx, agent).waterfall(
- 'agent/request', { turn: 1, step: 0, signal }, () => Promise.resolve(seed),
- )).resolves.toMatchObject({ provider: 'deepseek-official', model: 'deepseek-chat' })
- expect((await ctx.systemPrompt.assemble()).variables)
- .toMatchObject({ provider: 'deepseek-official', model: 'private-preview' })
- await expect(agentEvents(ctx, agent).waterfall(
- 'agent/request', { turn: 1, step: 1, signal }, () => Promise.resolve(seed),
- )).resolves.toMatchObject({
- provider: 'deepseek-official',
- model: 'private-preview',
- reasoningEffort: 'max',
- })
- const unsupported = await api.sessions.selectModel(request({
- sessionId,
- provider: 'deepseek-official',
- model: 'private-preview',
- reasoningEffort: 'medium',
- }))
- expect(unsupported.result).toMatchObject({
- ok: false,
- error: {
- code: 'model-unavailable',
- message: 'provider "deepseek-official" model "private-preview" does not support reasoning effort "medium"',
- },
- })
- const rejected = await api.sessions.selectModel(request({
- sessionId,
- provider: 'missing',
- model: 'model',
- }))
- expect(rejected.result).toEqual({
- ok: false,
- error: {
- code: 'model-unavailable',
- message: 'no adapter registered for provider "missing"',
- details: { provider: 'missing', model: 'model' },
- },
- })
- expect(expectValue(await api.sessions.models(request({ sessionId }))).current)
- .toEqual({ provider: 'deepseek-official', model: 'private-preview', reasoningEffort: 'max' })
- await ctx.fiber.dispose()
- })
- it('reads the host default live for a session whose log names no route', async () => {
- const { ctx, sessionId } = await harness()
- let stored = { provider: 'deepseek-official', model: 'deepseek-chat' }
- const api = createApiProxy(ctx, {
- defaultTarget: () => stored,
- cwd: '/tmp',
- workspaceRoot: '/tmp',
- })
- expect(expectValue(await api.sessions.models(request({ sessionId }))).current)
- .toEqual({ provider: 'deepseek-official', model: 'deepseek-chat' })
- // The default moving after the session exists still reaches it: New
- // Session reuses a blank session rather than minting another, so a seed
- // captured at creation would show the superseded model there.
- stored = { provider: 'deepseek-official', model: 'deepseek-reasoner' }
- expect(expectValue(await api.sessions.models(request({ sessionId }))).current)
- .toEqual({ provider: 'deepseek-official', model: 'deepseek-reasoner' })
- expect(expectValue(await api.host.describe(request({}))))
- .toMatchObject({ provider: 'deepseek-official', model: 'deepseek-reasoner' })
- await ctx.fiber.dispose()
- })
- it('keeps a session that logged a route on it when the host default moves', async () => {
- const { ctx, sessionId } = await harness({
- provider: 'deepseek-official',
- model: 'deepseek-chat',
- })
- let stored = { provider: 'deepseek-official', model: 'deepseek-chat' }
- const api = createApiProxy(ctx, {
- defaultTarget: () => stored,
- cwd: '/tmp',
- workspaceRoot: '/tmp',
- })
- stored = { provider: 'duplicate', model: 'same' }
- expect(expectValue(await api.sessions.models(request({ sessionId }))).current)
- .toEqual({ provider: 'deepseek-official', model: 'deepseek-chat' })
- await ctx.fiber.dispose()
- })
- it('saves an accepted selection as the default and survives a storage failure', async () => {
- const { ctx, sessionId } = await harness()
- const saved: unknown[] = []
- let reject = false
- const api = createApiProxy(ctx, {
- defaultTarget: () => ({ provider: 'deepseek-official', model: 'deepseek-chat' }),
- persistDefaultTarget: (target) => {
- saved.push(target)
- return reject ? Promise.reject(new Error('read-only document')) : Promise.resolve()
- },
- cwd: '/tmp',
- workspaceRoot: '/tmp',
- })
- expectValue(await api.sessions.selectModel(request({
- sessionId, provider: 'deepseek-official', model: 'deepseek-reasoner', reasoningEffort: 'max',
- })))
- expect(saved).toEqual([
- { provider: 'deepseek-official', model: 'deepseek-reasoner', reasoningEffort: 'max' },
- ])
- // A refused selection never becomes anyone's default.
- await api.sessions.selectModel(request({ sessionId, provider: 'missing', model: 'model' }))
- expect(saved).toHaveLength(1)
- // Storage failing is not the selection failing: the switch already applies
- // to this session, so the call still succeeds.
- reject = true
- const stillAccepted = expectValue(await api.sessions.selectModel(request({
- sessionId, provider: 'deepseek-official', model: 'deepseek-chat',
- })))
- expect(stillAccepted.selected).toEqual({ provider: 'deepseek-official', model: 'deepseek-chat', reasoningEffort: 'high' })
- expect(expectValue(await api.sessions.models(request({ sessionId }))).current)
- .toEqual({ provider: 'deepseek-official', model: 'deepseek-chat', reasoningEffort: 'high' })
- await ctx.fiber.dispose()
- })
- it('refuses a prompt no adapter can route, and reports it on the directory', async () => {
- const { ctx, sessionId } = await harness()
- const api = createApiProxy(ctx, {
- defaultTarget: () => ({ provider: 'deleted-gateway', model: 'deleted-model' }),
- cwd: '/tmp',
- workspaceRoot: '/tmp',
- })
- // The client disabling its input is an affordance; this method stays
- // callable, so the refusal has to live here.
- const refused = await api.sessions.prompt(request({
- sessionId, mode: 'queue' as const, content: [{ type: 'text' as const, text: 'hi' }],
- }))
- expect(refused.result).toMatchObject({
- ok: false,
- error: { code: 'model-unavailable', details: { provider: 'deleted-gateway', model: 'deleted-model' } },
- })
- expect(expectValue(await api.sessions.models(request({ sessionId }))).routable).toBe(false)
- // An advisory-unlisted model on a live route is NOT this: the route
- // serves it, so the prompt goes through and nothing blocks.
- expectValue(await api.sessions.selectModel(request({
- sessionId, provider: 'deepseek-official', model: 'unlisted-but-served',
- })))
- const catalog = expectValue(await api.sessions.models(request({ sessionId })))
- expect(catalog.routable).toBe(true)
- expect(catalog.groups.flatMap(group => group.models.map(model => model.id)))
- .not.toContain('unlisted-but-served')
- await ctx.fiber.dispose()
- })
- it('serves a session and its catalog when the stored default names a route that is gone', async () => {
- const { ctx, sessionId } = await harness()
- const api = createApiProxy(ctx, {
- // What a Models-page removal leaves behind: the settings document still
- // names the route the user last picked, and nothing serves it.
- defaultTarget: () => ({ provider: 'deleted-gateway', model: 'deleted-model' }),
- cwd: '/tmp',
- workspaceRoot: '/tmp',
- })
- const catalog = expectValue(await api.sessions.models(request({ sessionId })))
- // Passed through rather than repaired: matching no group is precisely what
- // makes the composer seat prompt for a selection instead of naming a model
- // the deployment cannot reach.
- expect(catalog.current).toEqual({ provider: 'deleted-gateway', model: 'deleted-model' })
- expect(catalog.groups.flatMap(group => group.models.map(model => `${group.id}/${model.id}`)))
- .not.toContain('deleted-gateway/deleted-model')
- await ctx.fiber.dispose()
- })
- })
|