agent / cli /src /client /command-label.ts
GraziePrego's picture
Upload folder using huggingface_hub
b152fd5 verified
export function buildCliCommandLabel(): string {
const args = process.argv.slice(2);
return args.length > 0 ? `paperclipai ${args.join(" ")}` : "paperclipai";
}