mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-15 15:46:30 +03:00
Release: CLI 4.0.2 and engine 0.1.1
Ship signed skill-bundle verification, fix annotated-session checkpoint ordering, and pin all published engine platform packages. Validated with Rust, Node, browser, and provider-backed end-to-end tests. AI assistance: prepared and validated with Codex under Paul Bakaus direction.
This commit is contained in:
@@ -7,6 +7,7 @@ import {
|
||||
MANUAL_EDIT_SYSTEM_INSTRUCTIONS,
|
||||
VARIANT_SYSTEM_INSTRUCTIONS,
|
||||
createLlmAgent,
|
||||
llmRequestSettings,
|
||||
parseManualEditResponse,
|
||||
parseVariantResponse,
|
||||
progressiveVariantGuidance,
|
||||
@@ -19,6 +20,19 @@ import {
|
||||
validateVariantVisibleCopy,
|
||||
} from './live-e2e/agents/llm-agent.mjs';
|
||||
|
||||
describe('live-e2e LLM request settings', () => {
|
||||
it('explicitly selects low-effort DeepSeek thinking for bounded JSON edit requests', () => {
|
||||
assert.deepEqual(llmRequestSettings('deepseek'), {
|
||||
thinking: { type: 'enabled' }, output_config: { effort: 'low' },
|
||||
});
|
||||
});
|
||||
|
||||
it('leaves other providers unchanged', () => {
|
||||
assert.deepEqual(llmRequestSettings('anthropic'), {});
|
||||
assert.deepEqual(llmRequestSettings('openai'), {});
|
||||
});
|
||||
});
|
||||
|
||||
describe('live-e2e LLM agent provider config', () => {
|
||||
it('defaults to OpenAI gpt-5.6-terra at medium reasoning effort', () => {
|
||||
const config = resolveLlmAgentConfig({}, {});
|
||||
|
||||
Reference in New Issue
Block a user