mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-19 20:10:39 +09:00
8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
|
|
import type { CLIAdapterModule } from "../types.js";
|
||
|
|
import { printClaudeStreamEvent } from "./format-event.js";
|
||
|
|
|
||
|
|
export const claudeLocalCLIAdapter: CLIAdapterModule = {
|
||
|
|
type: "claude_local",
|
||
|
|
formatStdoutEvent: printClaudeStreamEvent,
|
||
|
|
};
|