@kb-labs/adapters-vibeproxy 2.64.0 → 2.65.0
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/index.d.ts +2 -13
- package/dist/manifest.d.ts +13 -0
- package/dist/manifest.js +46 -0
- package/dist/manifest.js.map +1 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,3 @@
|
|
|
1
1
|
export { VibeProxyLLM, VibeProxyLLMConfig, createAdapter, createAdapter as default } from './llm.js';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* @module @kb-labs/adapters-vibeproxy/manifest
|
|
6
|
-
* Adapter manifest for VibeProxy LLM.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* Adapter manifest for VibeProxy LLM.
|
|
11
|
-
*/
|
|
12
|
-
declare const manifest: AdapterManifest;
|
|
13
|
-
|
|
14
|
-
export { manifest };
|
|
2
|
+
export { manifest } from './manifest.js';
|
|
3
|
+
import '@kb-labs/core-platform';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AdapterManifest } from '@kb-labs/core-platform';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @module @kb-labs/adapters-vibeproxy/manifest
|
|
5
|
+
* Adapter manifest for VibeProxy LLM.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Adapter manifest for VibeProxy LLM.
|
|
10
|
+
*/
|
|
11
|
+
declare const manifest: AdapterManifest;
|
|
12
|
+
|
|
13
|
+
export { manifest };
|
package/dist/manifest.js
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// src/manifest.ts
|
|
2
|
+
var manifest = {
|
|
3
|
+
manifestVersion: "1.0.0",
|
|
4
|
+
id: "vibeproxy-llm",
|
|
5
|
+
name: "VibeProxy LLM",
|
|
6
|
+
version: "0.1.0",
|
|
7
|
+
description: "VibeProxy local adapter supporting multiple LLM providers (Claude, GPT, etc.)",
|
|
8
|
+
author: "KB Labs Team",
|
|
9
|
+
license: "KBPL-1.1",
|
|
10
|
+
type: "core",
|
|
11
|
+
implements: "ILLM",
|
|
12
|
+
capabilities: {
|
|
13
|
+
streaming: false,
|
|
14
|
+
// TODO: implement SSE streaming
|
|
15
|
+
custom: {
|
|
16
|
+
functionCalling: true,
|
|
17
|
+
multiProvider: true
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
configSchema: {
|
|
21
|
+
baseURL: {
|
|
22
|
+
type: "string",
|
|
23
|
+
default: "http://localhost:8317",
|
|
24
|
+
description: "VibeProxy server URL"
|
|
25
|
+
},
|
|
26
|
+
apiKey: {
|
|
27
|
+
type: "string",
|
|
28
|
+
default: "any-string",
|
|
29
|
+
description: "API key (any string works for local VibeProxy)"
|
|
30
|
+
},
|
|
31
|
+
model: {
|
|
32
|
+
type: "string",
|
|
33
|
+
default: "claude-sonnet-4-20250514",
|
|
34
|
+
description: "Model to use (claude-*, gpt-*, etc.)"
|
|
35
|
+
},
|
|
36
|
+
timeout: {
|
|
37
|
+
type: "number",
|
|
38
|
+
default: 12e4,
|
|
39
|
+
description: "Request timeout in milliseconds"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export { manifest };
|
|
45
|
+
//# sourceMappingURL=manifest.js.map
|
|
46
|
+
//# sourceMappingURL=manifest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/manifest.ts"],"names":[],"mappings":";AAUO,IAAM,QAAA,GAA4B;AAAA,EACvC,eAAA,EAAiB,OAAA;AAAA,EACjB,EAAA,EAAI,eAAA;AAAA,EACJ,IAAA,EAAM,eAAA;AAAA,EACN,OAAA,EAAS,OAAA;AAAA,EACT,WAAA,EACE,+EAAA;AAAA,EACF,MAAA,EAAQ,cAAA;AAAA,EACR,OAAA,EAAS,UAAA;AAAA,EACT,IAAA,EAAM,MAAA;AAAA,EACN,UAAA,EAAY,MAAA;AAAA,EACZ,YAAA,EAAc;AAAA,IACZ,SAAA,EAAW,KAAA;AAAA;AAAA,IACX,MAAA,EAAQ;AAAA,MACN,eAAA,EAAiB,IAAA;AAAA,MACjB,aAAA,EAAe;AAAA;AACjB,GACF;AAAA,EACA,YAAA,EAAc;AAAA,IACZ,OAAA,EAAS;AAAA,MACP,IAAA,EAAM,QAAA;AAAA,MACN,OAAA,EAAS,uBAAA;AAAA,MACT,WAAA,EAAa;AAAA,KACf;AAAA,IACA,MAAA,EAAQ;AAAA,MACN,IAAA,EAAM,QAAA;AAAA,MACN,OAAA,EAAS,YAAA;AAAA,MACT,WAAA,EAAa;AAAA,KACf;AAAA,IACA,KAAA,EAAO;AAAA,MACL,IAAA,EAAM,QAAA;AAAA,MACN,OAAA,EAAS,0BAAA;AAAA,MACT,WAAA,EAAa;AAAA,KACf;AAAA,IACA,OAAA,EAAS;AAAA,MACP,IAAA,EAAM,QAAA;AAAA,MACN,OAAA,EAAS,IAAA;AAAA,MACT,WAAA,EAAa;AAAA;AACf;AAEJ","file":"manifest.js","sourcesContent":["/**\n * @module @kb-labs/adapters-vibeproxy/manifest\n * Adapter manifest for VibeProxy LLM.\n */\n\nimport type { AdapterManifest } from \"@kb-labs/core-platform\";\n\n/**\n * Adapter manifest for VibeProxy LLM.\n */\nexport const manifest: AdapterManifest = {\n manifestVersion: \"1.0.0\",\n id: \"vibeproxy-llm\",\n name: \"VibeProxy LLM\",\n version: \"0.1.0\",\n description:\n \"VibeProxy local adapter supporting multiple LLM providers (Claude, GPT, etc.)\",\n author: \"KB Labs Team\",\n license: \"KBPL-1.1\",\n type: \"core\",\n implements: \"ILLM\",\n capabilities: {\n streaming: false, // TODO: implement SSE streaming\n custom: {\n functionCalling: true,\n multiProvider: true,\n },\n },\n configSchema: {\n baseURL: {\n type: \"string\",\n default: \"http://localhost:8317\",\n description: \"VibeProxy server URL\",\n },\n apiKey: {\n type: \"string\",\n default: \"any-string\",\n description: \"API key (any string works for local VibeProxy)\",\n },\n model: {\n type: \"string\",\n default: \"claude-sonnet-4-20250514\",\n description: \"Model to use (claude-*, gpt-*, etc.)\",\n },\n timeout: {\n type: \"number\",\n default: 120000,\n description: \"Request timeout in milliseconds\",\n },\n },\n};\n"]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/adapters-vibeproxy",
|
|
3
3
|
"description": "VibeProxy adapter implementing ILLM interface for local Anthropic API proxy",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.65.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"tsup": "^8.5.0",
|
|
28
28
|
"typescript": "^5.6.3",
|
|
29
29
|
"vitest": "^3.2.4",
|
|
30
|
-
"@kb-labs/
|
|
31
|
-
"@kb-labs/
|
|
30
|
+
"@kb-labs/devkit": "2.65.0",
|
|
31
|
+
"@kb-labs/core-platform": "2.65.0"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=20.0.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"manifest": "./dist/manifest.js"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@kb-labs/core-platform": "^2.
|
|
41
|
+
"@kb-labs/core-platform": "^2.65.0"
|
|
42
42
|
},
|
|
43
43
|
"sideEffects": false,
|
|
44
44
|
"scripts": {
|