Plandex / cli /src /adapters /http /index.ts
AUXteam's picture
Upload folder using huggingface_hub
cf9339a verified
raw
history blame
239 Bytes
import type { CLIAdapterModule } from "@paperclipai/adapter-utils";
import { printHttpStdoutEvent } from "./format-event.js";
export const httpCLIAdapter: CLIAdapterModule = {
type: "http",
formatStdoutEvent: printHttpStdoutEvent,
};