@probelabs/probe 0.6.0-rc336 → 0.6.0-rc337
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-rc336-aarch64-apple-darwin.tar.gz → probe-v0.6.0-rc337-aarch64-apple-darwin.tar.gz} +0 -0
- package/bin/binaries/{probe-v0.6.0-rc336-aarch64-unknown-linux-musl.tar.gz → probe-v0.6.0-rc337-aarch64-unknown-linux-musl.tar.gz} +0 -0
- package/bin/binaries/{probe-v0.6.0-rc336-x86_64-apple-darwin.tar.gz → probe-v0.6.0-rc337-x86_64-apple-darwin.tar.gz} +0 -0
- package/bin/binaries/{probe-v0.6.0-rc336-x86_64-pc-windows-msvc.zip → probe-v0.6.0-rc337-x86_64-pc-windows-msvc.zip} +0 -0
- package/bin/binaries/{probe-v0.6.0-rc336-x86_64-unknown-linux-musl.tar.gz → probe-v0.6.0-rc337-x86_64-unknown-linux-musl.tar.gz} +0 -0
- package/build/agent/ProbeAgent.js +1 -2
- package/cjs/agent/ProbeAgent.cjs +1 -2
- package/cjs/index.cjs +1 -2
- package/package.json +1 -1
- package/src/agent/ProbeAgent.js +1 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2488,7 +2488,6 @@ export class ProbeAgent {
|
|
|
2488
2488
|
this.engine = await createCodexEngine({
|
|
2489
2489
|
agent: this, // Pass reference to ProbeAgent for tool access
|
|
2490
2490
|
systemPrompt: systemPrompt,
|
|
2491
|
-
customPrompt: this.customPrompt,
|
|
2492
2491
|
sessionId: this.options?.sessionId,
|
|
2493
2492
|
debug: this.debug,
|
|
2494
2493
|
allowedTools: this.allowedTools, // Pass tool filtering configuration
|
|
@@ -3337,7 +3336,7 @@ ${extractGuidance2}
|
|
|
3337
3336
|
const { prompt } = this._prepareGovernedAnswerPrompt(message, options);
|
|
3338
3337
|
const systemPrompt = await this._getCachedCodexNativeSystemPrompt();
|
|
3339
3338
|
const { previewGovernedCodexInitialDispatch } = await import('./engines/codex.js');
|
|
3340
|
-
return previewGovernedCodexInitialDispatch({ systemPrompt,
|
|
3339
|
+
return previewGovernedCodexInitialDispatch({ systemPrompt, prompt });
|
|
3341
3340
|
}
|
|
3342
3341
|
|
|
3343
3342
|
/**
|
package/cjs/agent/ProbeAgent.cjs
CHANGED
|
@@ -110322,7 +110322,6 @@ var init_ProbeAgent = __esm({
|
|
|
110322
110322
|
agent: this,
|
|
110323
110323
|
// Pass reference to ProbeAgent for tool access
|
|
110324
110324
|
systemPrompt,
|
|
110325
|
-
customPrompt: this.customPrompt,
|
|
110326
110325
|
sessionId: this.options?.sessionId,
|
|
110327
110326
|
debug: this.debug,
|
|
110328
110327
|
allowedTools: this.allowedTools,
|
|
@@ -111031,7 +111030,7 @@ Workspace: ${this.allowedFolders.join(", ")}`;
|
|
|
111031
111030
|
const { prompt } = this._prepareGovernedAnswerPrompt(message, options);
|
|
111032
111031
|
const systemPrompt = await this._getCachedCodexNativeSystemPrompt();
|
|
111033
111032
|
const { previewGovernedCodexInitialDispatch: previewGovernedCodexInitialDispatch2 } = await Promise.resolve().then(() => (init_codex(), codex_exports));
|
|
111034
|
-
return previewGovernedCodexInitialDispatch2({ systemPrompt,
|
|
111033
|
+
return previewGovernedCodexInitialDispatch2({ systemPrompt, prompt });
|
|
111035
111034
|
}
|
|
111036
111035
|
/**
|
|
111037
111036
|
* Get the system message with instructions for the AI (XML Tool Format)
|
package/cjs/index.cjs
CHANGED
|
@@ -110268,7 +110268,6 @@ var init_ProbeAgent = __esm({
|
|
|
110268
110268
|
agent: this,
|
|
110269
110269
|
// Pass reference to ProbeAgent for tool access
|
|
110270
110270
|
systemPrompt,
|
|
110271
|
-
customPrompt: this.customPrompt,
|
|
110272
110271
|
sessionId: this.options?.sessionId,
|
|
110273
110272
|
debug: this.debug,
|
|
110274
110273
|
allowedTools: this.allowedTools,
|
|
@@ -110977,7 +110976,7 @@ Workspace: ${this.allowedFolders.join(", ")}`;
|
|
|
110977
110976
|
const { prompt } = this._prepareGovernedAnswerPrompt(message, options);
|
|
110978
110977
|
const systemPrompt = await this._getCachedCodexNativeSystemPrompt();
|
|
110979
110978
|
const { previewGovernedCodexInitialDispatch: previewGovernedCodexInitialDispatch2 } = await Promise.resolve().then(() => (init_codex(), codex_exports));
|
|
110980
|
-
return previewGovernedCodexInitialDispatch2({ systemPrompt,
|
|
110979
|
+
return previewGovernedCodexInitialDispatch2({ systemPrompt, prompt });
|
|
110981
110980
|
}
|
|
110982
110981
|
/**
|
|
110983
110982
|
* Get the system message with instructions for the AI (XML Tool Format)
|
package/package.json
CHANGED
package/src/agent/ProbeAgent.js
CHANGED
|
@@ -2488,7 +2488,6 @@ export class ProbeAgent {
|
|
|
2488
2488
|
this.engine = await createCodexEngine({
|
|
2489
2489
|
agent: this, // Pass reference to ProbeAgent for tool access
|
|
2490
2490
|
systemPrompt: systemPrompt,
|
|
2491
|
-
customPrompt: this.customPrompt,
|
|
2492
2491
|
sessionId: this.options?.sessionId,
|
|
2493
2492
|
debug: this.debug,
|
|
2494
2493
|
allowedTools: this.allowedTools, // Pass tool filtering configuration
|
|
@@ -3337,7 +3336,7 @@ ${extractGuidance2}
|
|
|
3337
3336
|
const { prompt } = this._prepareGovernedAnswerPrompt(message, options);
|
|
3338
3337
|
const systemPrompt = await this._getCachedCodexNativeSystemPrompt();
|
|
3339
3338
|
const { previewGovernedCodexInitialDispatch } = await import('./engines/codex.js');
|
|
3340
|
-
return previewGovernedCodexInitialDispatch({ systemPrompt,
|
|
3339
|
+
return previewGovernedCodexInitialDispatch({ systemPrompt, prompt });
|
|
3341
3340
|
}
|
|
3342
3341
|
|
|
3343
3342
|
/**
|