UNPKG

@gensx/anthropic

Version:

Anthropic integration for GenSX.

21 lines (17 loc) 524 B
/** * Check out the docs at https://www.gensx.com/docs * Find us on Github https://github.com/gensx-inc/gensx * Find us on Discord https://discord.gg/F5BSU8Kc */ import { Anthropic as Anthropic$1 } from '@anthropic-ai/sdk'; import { wrap } from '@gensx/core'; class Anthropic extends Anthropic$1 { constructor(options) { super(options); return wrapAnthropic(this); } } // TODO: Deeper wrapping const wrapAnthropic = wrap; export { Anthropic, wrapAnthropic }; //# sourceMappingURL=anthropic.js.map