mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-04-17 19:11:33 +00:00
9 lines
252 B
JavaScript
9 lines
252 B
JavaScript
/**
|
|
* Codex provider barrel.
|
|
* Assembles the ProviderAdapter from adapter + sessions.
|
|
*/
|
|
import { normalizeMessage } from './adapter.js';
|
|
import { fetchHistory } from './sessions.js';
|
|
|
|
export const codexAdapter = { normalizeMessage, fetchHistory };
|