@quantish/agent 0.1.65 → 0.1.66
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.
|
@@ -2643,7 +2643,7 @@ ${config.prompt}
|
|
|
2643
2643
|
- Focus on answering the task, not explaining your process`;
|
|
2644
2644
|
}
|
|
2645
2645
|
async function runSubAgent(task, config) {
|
|
2646
|
-
const { Agent: Agent2 } = await import("./loop-
|
|
2646
|
+
const { Agent: Agent2 } = await import("./loop-4IERKXPM.js");
|
|
2647
2647
|
const thoroughnessConfig = THOROUGHNESS_CONFIG[task.thoroughness || "medium"];
|
|
2648
2648
|
const allowedTools = filterToolsForSubAgent(config.allTools, task.allowedToolPatterns);
|
|
2649
2649
|
const isOpenRouter = config.provider === "openrouter";
|
|
@@ -3809,9 +3809,14 @@ function truncateToolResult(result, toolName) {
|
|
|
3809
3809
|
title: m.title,
|
|
3810
3810
|
question: m.question,
|
|
3811
3811
|
conditionId: m.conditionId,
|
|
3812
|
+
slug: m.slug,
|
|
3813
|
+
tokens: m.tokens,
|
|
3814
|
+
// Contains outcome prices!
|
|
3812
3815
|
bestBid: m.bestBid,
|
|
3813
3816
|
bestAsk: m.bestAsk,
|
|
3814
|
-
outcomePrices: m.outcomePrices
|
|
3817
|
+
outcomePrices: m.outcomePrices,
|
|
3818
|
+
volume: m.volume,
|
|
3819
|
+
liquidity: m.liquidity
|
|
3815
3820
|
}));
|
|
3816
3821
|
return {
|
|
3817
3822
|
...marketResult,
|
package/dist/index.js
CHANGED