feat(llm): route adapters by provider

This commit is contained in:
Yichen Jiang
2026-07-14 21:57:52 +08:00
parent a0359bc4a9
commit e547980d77
218 changed files with 2605 additions and 1844 deletions

View File

@@ -32,6 +32,7 @@
- id: stdio-agent
name: '@deepseek-ai/dsh-stdio-agent'
config:
provider: mock
model: mock-echo
persona: 'You are echo-agent, a demo agent.'
welcome: 'echo-agent ready. Type a message ("echo <text>" triggers the tool).'

View File

@@ -55,5 +55,5 @@ export const name = 'mock-llm'
export const inject = ['llm']
export function apply(ctx: Context) {
ctx.llm.registerAdapter(['mock-echo'], new MockEchoAdapter())
ctx.llm.registerAdapter(['mock'], new MockEchoAdapter())
}