@probelabs/probe 0.6.0-rc200 → 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/cjs/agent/ProbeAgent.cjs +7090 -6002
- package/cjs/index.cjs +7090 -6002
- package/index.d.ts +8 -0
- package/package.json +1 -1
- package/src/agent/ProbeAgent.d.ts +8 -0
- package/bin/binaries/probe-v0.6.0-rc200-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc200-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc200-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc200-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc200-x86_64-unknown-linux-musl.tar.gz +0 -0
package/index.d.ts
CHANGED
|
@@ -269,6 +269,14 @@ export declare class ProbeAgent {
|
|
|
269
269
|
*/
|
|
270
270
|
constructor(options?: ProbeAgentOptions);
|
|
271
271
|
|
|
272
|
+
/**
|
|
273
|
+
* Initialize the agent asynchronously (must be called after constructor)
|
|
274
|
+
* This method initializes MCP, merges MCP tools, loads history from storage,
|
|
275
|
+
* and performs CLI fallback detection (claude-code/codex) when no API keys are set.
|
|
276
|
+
* @returns Promise that resolves when initialization is complete
|
|
277
|
+
*/
|
|
278
|
+
initialize(): Promise<void>;
|
|
279
|
+
|
|
272
280
|
/**
|
|
273
281
|
* Answer a question with optional image attachments
|
|
274
282
|
* @param message - The question or prompt
|
package/package.json
CHANGED
|
@@ -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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|