@pi-oxide/pi-host-web 0.7.0 → 0.9.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/bindings.d.ts +2 -0
- package/dist/index-C8phwA2v.js +867 -0
- package/dist/index-CAp51VNq.js +867 -0
- package/dist/index-Is-rTdaY.js +867 -0
- package/dist/index.js +960 -1789
- package/dist/sdk/bindings/host-agent.d.ts +16 -0
- package/dist/sdk/bindings/host-agent.d.ts.map +1 -0
- package/dist/sdk/bindings/index.d.ts +7 -0
- package/dist/sdk/bindings/index.d.ts.map +1 -0
- package/dist/sdk/bindings/index.js +14 -0
- package/dist/sdk/bindings/init.d.ts +30 -0
- package/dist/sdk/bindings/init.d.ts.map +1 -0
- package/dist/sdk/bindings/markers.d.ts +9 -0
- package/dist/sdk/bindings/markers.d.ts.map +1 -0
- package/dist/sdk/bindings/tool-preparation.d.ts +12 -0
- package/dist/sdk/bindings/tool-preparation.d.ts.map +1 -0
- package/dist/sdk/bindings/turn-loop.d.ts +5 -0
- package/dist/sdk/bindings/turn-loop.d.ts.map +1 -0
- package/dist/sdk/bindings/types.d.ts +60 -0
- package/dist/sdk/bindings/types.d.ts.map +1 -0
- package/dist/sdk/init.d.ts +1 -29
- package/dist/sdk/init.d.ts.map +1 -1
- package/dist/sdk/internal/engine.d.ts +3 -90
- package/dist/sdk/internal/engine.d.ts.map +1 -1
- package/dist/sdk/orchestration/agent-engine.d.ts +24 -0
- package/dist/sdk/orchestration/agent-engine.d.ts.map +1 -0
- package/dist/sdk/orchestration/config-builders.d.ts +13 -0
- package/dist/sdk/orchestration/config-builders.d.ts.map +1 -0
- package/dist/sdk/orchestration/model-adapter.d.ts +10 -0
- package/dist/sdk/orchestration/model-adapter.d.ts.map +1 -0
- package/package.json +30 -1
- package/pi_host_web.d.ts +24 -11
- package/pi_host_web.js +12 -0
- package/pi_host_web_bg.wasm +0 -0
- package/pi_host_web_bg.wasm.d.ts +2 -1
package/pi_host_web_bg.wasm.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ export const hostReadArtifact: (a: number, b: number, c: number) => [number, num
|
|
|
10
10
|
export const hostSearchArtifacts: (a: number, b: number, c: number) => [number, number, number];
|
|
11
11
|
export const restoreHostState: (a: any) => any;
|
|
12
12
|
export const restoreHostStateFromJson: (a: number, b: number) => any;
|
|
13
|
-
export const setLogLevel: (a: number, b: number) => void;
|
|
14
13
|
export const createHostAgent: (a: any, b: any) => any;
|
|
15
14
|
export const destroyHostAgent: (a: number) => any;
|
|
16
15
|
export const getHostAgentPersistData: (a: number) => any;
|
|
@@ -19,6 +18,7 @@ export const hostAcceptCompaction: (a: number, b: number, c: number, d: number,
|
|
|
19
18
|
export const hostContinueTurn: (a: number) => any;
|
|
20
19
|
export const hostFeedLlmChunk: (a: number, b: any) => any;
|
|
21
20
|
export const hostLlmDone: (a: number, b: any) => any;
|
|
21
|
+
export const hostPrepareToolCalls: (a: number, b: number, c: number) => any;
|
|
22
22
|
export const hostReset: (a: number) => any;
|
|
23
23
|
export const hostSteer: (a: number, b: any) => any;
|
|
24
24
|
export const hostToolCancelled: (a: number, b: number, c: number, d: any) => any;
|
|
@@ -26,6 +26,7 @@ export const hostToolDone: (a: number, b: any, c: any) => any;
|
|
|
26
26
|
export const hostToolFailed: (a: number, b: any, c: any) => any;
|
|
27
27
|
export const restoreHostAgent: (a: any, b: any) => any;
|
|
28
28
|
export const startTurn: (a: number, b: any) => any;
|
|
29
|
+
export const setLogLevel: (a: number, b: number) => void;
|
|
29
30
|
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
30
31
|
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
31
32
|
export const __wbindgen_free: (a: number, b: number, c: number) => void;
|