mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-22 08:38:08 +02:00
feat: add codex llm backend
This commit is contained in:
parent
21744fc520
commit
64b8a416fe
28 changed files with 1462 additions and 14 deletions
|
|
@ -312,4 +312,13 @@ describe('createKtxLlmProvider', () => {
|
|||
}),
|
||||
).toThrow('claude-code is not an AI SDK LanguageModel backend');
|
||||
});
|
||||
|
||||
it('rejects codex as an AI SDK LanguageModel backend', () => {
|
||||
expect(() =>
|
||||
createKtxLlmProvider({
|
||||
backend: 'codex',
|
||||
modelSlots: { default: 'gpt-5.3-codex' },
|
||||
}),
|
||||
).toThrow('codex is not an AI SDK LanguageModel backend');
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue