@gensx/anthropic
Version:
Anthropic integration for GenSX.
24 lines (19 loc) • 557 B
JavaScript
;
/**
* 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
*/
var sdk = require('@anthropic-ai/sdk');
var core = require('@gensx/core');
class Anthropic extends sdk.Anthropic {
constructor(options) {
super(options);
return wrapAnthropic(this);
}
}
// TODO: Deeper wrapping
const wrapAnthropic = core.wrap;
exports.Anthropic = Anthropic;
exports.wrapAnthropic = wrapAnthropic;
//# sourceMappingURL=anthropic.cjs.map