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.
68 lines
2.4 KiB
TypeScript
68 lines
2.4 KiB
TypeScript
import { mkdtemp, rm } from 'node:fs/promises'
|
|
import { tmpdir } from 'node:os'
|
|
import { join } from 'node:path'
|
|
import { afterEach, describe, expect, it } from 'vitest'
|
|
import { Context } from '@deepseek-ai/cordis'
|
|
import SessionStore, { SessionId } from '@deepseek-ai/dsh-session'
|
|
import SessionPersistenceJsonl from '@deepseek-ai/dsh-session-persistence-jsonl'
|
|
import SessionPersistenceSqlite from '@deepseek-ai/dsh-session-persistence-sqlite'
|
|
import { RetryId } from '@deepseek-ai/dsh-llm-retry'
|
|
import type {} from '../src/index.ts'
|
|
|
|
const dirs: string[] = []
|
|
|
|
afterEach(async () => {
|
|
for (const dir of dirs.splice(0)) await rm(dir, { recursive: true, force: true })
|
|
})
|
|
|
|
async function backend(kind: 'jsonl' | 'sqlite'): Promise<Context> {
|
|
const ctx = new Context()
|
|
await ctx.plugin(SessionStore)
|
|
if (kind === 'jsonl') {
|
|
const root = await mkdtemp(join(tmpdir(), 'dsh-llm-retry-jsonl-'))
|
|
dirs.push(root)
|
|
await ctx.plugin(SessionPersistenceJsonl, { root })
|
|
} else {
|
|
await ctx.plugin(SessionPersistenceSqlite, { path: ':memory:' })
|
|
}
|
|
return ctx
|
|
}
|
|
|
|
describe.each(['jsonl', 'sqlite'] as const)('%s retry-event persistence', (kind) => {
|
|
it('round-trips the event losslessly without adding a model message', async () => {
|
|
const ctx = await backend(kind)
|
|
try {
|
|
const session = ctx.sessions.create(SessionId(`retry-${kind}`))
|
|
session.append('turn/start', { turn: 1 })
|
|
session.append('step/start', { turn: 1, step: 1 })
|
|
session.append('request/header', {
|
|
header: { config: { provider: 'mock', model: 'mock' } },
|
|
reason: 'initial',
|
|
})
|
|
const event = session.append('llm/retry', {
|
|
retryId: RetryId(`retry-${kind}-chain`),
|
|
turn: 1,
|
|
step: 1,
|
|
provider: 'mock',
|
|
mode: 'always',
|
|
policyKey: '["always",500,10000,0.1]',
|
|
retry: 1,
|
|
delayMs: 750,
|
|
failure: { message: 'provider busy', code: 'RATE_LIMIT', status: 429 },
|
|
})
|
|
session.append('step/end', { turn: 1, step: 1 })
|
|
session.append('turn/end', { turn: 1, reason: { kind: 'error', error: { message: 'provider busy', code: 'RATE_LIMIT', status: 429 },
|
|
},
|
|
})
|
|
|
|
expect(session.deriveMessages()).toEqual([])
|
|
await ctx.sessions.flush(session)
|
|
const loaded = await ctx.sessionPersistence.load(session.id)
|
|
|
|
expect(loaded.events.find(item => item.type === 'llm/retry')).toEqual(event)
|
|
} finally {
|
|
await ctx.fiber.dispose()
|
|
}
|
|
})
|
|
})
|