@arcote.tech/arc-ai-claude 0.4.7 → 0.5.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/package.json +2 -2
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcote.tech/arc-ai-claude",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.5.0",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Claude (Anthropic) adapter for Arc AI framework",
|
|
7
7
|
"main": "./src/index.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"type-check": "tsc --noEmit"
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
|
-
"@arcote.tech/arc-ai": "^0.
|
|
13
|
+
"@arcote.tech/arc-ai": "^0.5.0",
|
|
14
14
|
"typescript": "^5.0.0"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -99,7 +99,7 @@ export function claude(config: ClaudeConfig): LLMProvider {
|
|
|
99
99
|
throw new Error(`Claude API error ${response.status}: ${error}`);
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
const data = await response.json()
|
|
102
|
+
const data = await response.json();
|
|
103
103
|
|
|
104
104
|
let content = "";
|
|
105
105
|
const toolCalls: ToolCall[] = [];
|