f016392368
feat(run): migrate non-interactive prompts to V2 feat(run): route mini prompts through V2 fix(run): use current session contracts fix(run): fix V2 prompt turns feat(cli): add mini subcommand feat(run): use settled execution events fix(run): handle remote prompt file attachments feat(run): send prompt files as attachments feat(run): use current APIs for run state fix(run): adopt app-node runtime deps feat(run): track subagent sessions feat(run): move catalogs and default model onto current APIs
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
// Shared provider config for tests that need opencode to talk to a fake LLM
|
|
// over a real HTTP endpoint. Registers a single provider `test` with a single
|
|
// model `test-model` (i.e. `--model test/test-model`), pointed at the URL the
|
|
// caller supplies (typically a TestLLMServer instance).
|
|
//
|
|
// Used by:
|
|
// - test/lib/run-process.ts (subprocess CLI tests)
|
|
// - test/server/httpapi-sdk.test.ts (in-process SDK tests)
|
|
export function testProviderConfig(llmUrl: string) {
|
|
return {
|
|
formatter: false,
|
|
lsp: false,
|
|
provider: {
|
|
test: {
|
|
name: "Test",
|
|
id: "test",
|
|
env: [],
|
|
npm: "@ai-sdk/openai-compatible",
|
|
models: {
|
|
"test-model": {
|
|
id: "test-model",
|
|
name: "Test Model",
|
|
attachment: false,
|
|
reasoning: false,
|
|
temperature: false,
|
|
tool_call: true,
|
|
release_date: "2025-01-01",
|
|
limit: { context: 100_000, output: 10_000 },
|
|
cost: { input: 0, output: 0 },
|
|
options: {},
|
|
},
|
|
},
|
|
options: { apiKey: "test-key", baseURL: llmUrl, body: { apiKey: "test-key" } },
|
|
},
|
|
},
|
|
}
|
|
}
|