Files
oh-my-opencode/src/plugin/system-transform.ts
T

7 lines
244 B
TypeScript
Raw Normal View History

export function createSystemTransformHandler(): (
input: { sessionID?: string; model: { id: string; providerID: string; [key: string]: unknown } },
output: { system: string[] },
) => Promise<void> {
return async (): Promise<void> => {}
}