ai-hist-native 0.21.2 → 0.23.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/index.d.ts +6 -0
- package/npm/darwin-arm64/ai-hist-native.darwin-arm64.node +0 -0
- package/npm/darwin-arm64/package.json +1 -1
- package/npm/darwin-x64/ai-hist-native.darwin-x64.node +0 -0
- package/npm/darwin-x64/package.json +1 -1
- package/npm/linux-arm64-gnu/ai-hist-native.linux-arm64-gnu.node +0 -0
- package/npm/linux-arm64-gnu/package.json +1 -1
- package/npm/linux-arm64-musl/ai-hist-native.linux-arm64-musl.node +0 -0
- package/npm/linux-arm64-musl/package.json +1 -1
- package/npm/linux-x64-gnu/ai-hist-native.linux-x64-gnu.node +0 -0
- package/npm/linux-x64-gnu/package.json +1 -1
- package/npm/linux-x64-musl/ai-hist-native.linux-x64-musl.node +0 -0
- package/npm/linux-x64-musl/package.json +1 -1
- package/npm/win32-x64-msvc/ai-hist-native.win32-x64-msvc.node +0 -0
- package/npm/win32-x64-msvc/package.json +1 -1
- package/package.json +8 -8
package/index.d.ts
CHANGED
|
@@ -70,6 +70,11 @@ export interface NativeSessionEvent {
|
|
|
70
70
|
text?: string
|
|
71
71
|
model?: string
|
|
72
72
|
tokenJson?: string
|
|
73
|
+
/**
|
|
74
|
+
* The upstream inference provider the harness named, when it names one
|
|
75
|
+
* (OpenCode's `providerID`). Null elsewhere rather than inferred.
|
|
76
|
+
*/
|
|
77
|
+
provider?: string
|
|
73
78
|
eventUid: string
|
|
74
79
|
/**
|
|
75
80
|
* Per-tool-result fidelity. Null on every row that is not a tool result,
|
|
@@ -95,6 +100,7 @@ export interface NativeSessionEvent {
|
|
|
95
100
|
subagentSessionId?: string
|
|
96
101
|
agentId?: string
|
|
97
102
|
requestId?: string
|
|
103
|
+
/** Why the turn ended, as the harness reported it. */
|
|
98
104
|
stopReason?: string
|
|
99
105
|
agentVersion?: string
|
|
100
106
|
isSidechain?: boolean
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-hist-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"description": "Mandatory Node-API engine for RelayHistory.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"@napi-rs/cli": "^2.18.4"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"ai-hist-native-darwin-arm64": "0.
|
|
48
|
-
"ai-hist-native-darwin-x64": "0.
|
|
49
|
-
"ai-hist-native-linux-x64-gnu": "0.
|
|
50
|
-
"ai-hist-native-linux-arm64-gnu": "0.
|
|
51
|
-
"ai-hist-native-linux-x64-musl": "0.
|
|
52
|
-
"ai-hist-native-linux-arm64-musl": "0.
|
|
53
|
-
"ai-hist-native-win32-x64-msvc": "0.
|
|
47
|
+
"ai-hist-native-darwin-arm64": "0.23.0",
|
|
48
|
+
"ai-hist-native-darwin-x64": "0.23.0",
|
|
49
|
+
"ai-hist-native-linux-x64-gnu": "0.23.0",
|
|
50
|
+
"ai-hist-native-linux-arm64-gnu": "0.23.0",
|
|
51
|
+
"ai-hist-native-linux-x64-musl": "0.23.0",
|
|
52
|
+
"ai-hist-native-linux-arm64-musl": "0.23.0",
|
|
53
|
+
"ai-hist-native-win32-x64-msvc": "0.23.0"
|
|
54
54
|
}
|
|
55
55
|
}
|