@zenith-open/zenithcms-plugin-ai-anthropic 1.0.0-beta.10 → 1.0.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +15 -0
- package/package.json +3 -3
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.anthropicPlugin = void 0;
|
|
4
|
+
const anthropicPlugin = () => {
|
|
5
|
+
return {
|
|
6
|
+
id: 'ai-anthropic',
|
|
7
|
+
name: 'Anthropic AI',
|
|
8
|
+
description: 'Official Anthropic SDK for Claude models',
|
|
9
|
+
onReady: async (ctx) => {
|
|
10
|
+
ctx.logger.info('[Anthropic Plugin] Loaded Anthropic AI Provider');
|
|
11
|
+
// Register with AI provider registry in core
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
exports.anthropicPlugin = anthropicPlugin;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenith-open/zenithcms-plugin-ai-anthropic",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.8",
|
|
4
4
|
"description": "Anthropic AI SDK Integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"typescript": "^5.4.5"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@zenith-open/zenithcms-
|
|
15
|
-
"@zenith-open/zenithcms-
|
|
14
|
+
"@zenith-open/zenithcms-core": "1.0.0-beta.8",
|
|
15
|
+
"@zenith-open/zenithcms-types": "1.0.0-beta.8"
|
|
16
16
|
},
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public"
|