@probelabs/probe 0.6.0-rc199 → 0.6.0-rc201
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/bin/binaries/probe-v0.6.0-rc201-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc201-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc201-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc201-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc201-x86_64-unknown-linux-musl.tar.gz +0 -0
- package/build/agent/ProbeAgent.d.ts +8 -0
- package/build/agent/index.js +1578 -1529
- package/build/delegate.js +5 -1
- package/build/tools/common.js +11 -3
- package/build/tools/vercel.js +17 -4
- package/cjs/agent/ProbeAgent.cjs +7445 -6308
- package/cjs/index.cjs +7512 -6415
- package/index.d.ts +8 -0
- package/package.json +1 -1
- package/src/agent/ProbeAgent.d.ts +8 -0
- package/src/delegate.js +5 -1
- package/src/tools/common.js +11 -3
- package/src/tools/vercel.js +17 -4
- package/bin/binaries/probe-v0.6.0-rc199-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc199-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc199-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc199-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc199-x86_64-unknown-linux-musl.tar.gz +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -198,6 +198,14 @@ export declare class ProbeAgent {
|
|
|
198
198
|
*/
|
|
199
199
|
constructor(options?: ProbeAgentOptions);
|
|
200
200
|
|
|
201
|
+
/**
|
|
202
|
+
* Initialize the agent asynchronously (must be called after constructor)
|
|
203
|
+
* This method initializes MCP, merges MCP tools, loads history from storage,
|
|
204
|
+
* and performs CLI fallback detection (claude-code/codex) when no API keys are set.
|
|
205
|
+
* @returns Promise that resolves when initialization is complete
|
|
206
|
+
*/
|
|
207
|
+
initialize(): Promise<void>;
|
|
208
|
+
|
|
201
209
|
/**
|
|
202
210
|
* Answer a question with optional image attachments
|
|
203
211
|
* @param message - The question or prompt
|