2026-02-22 01:57:22 +09:00
|
|
|
export function createSystemTransformHandler(): (
|
2026-03-05 11:18:12 +09:00
|
|
|
input: { sessionID?: string; model: { id: string; providerID: string; [key: string]: unknown } },
|
2026-02-22 01:57:22 +09:00
|
|
|
output: { system: string[] },
|
|
|
|
|
) => Promise<void> {
|
|
|
|
|
return async (): Promise<void> => {}
|
2026-02-19 04:41:00 +02:00
|
|
|
}
|