fabric/installer/client/gui/claude.mjs

6 lines
117 B
JavaScript
Raw Normal View History

import Claude from "claude-ai";
export function MakeClaude(apiKey) {
return new Claude({ sessionKey: apiKey });
}