@probelabs/probe 0.6.0-rc264 → 0.6.0-rc266

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.
Files changed (41) hide show
  1. package/bin/binaries/probe-v0.6.0-rc266-aarch64-apple-darwin.tar.gz +0 -0
  2. package/bin/binaries/probe-v0.6.0-rc266-aarch64-unknown-linux-musl.tar.gz +0 -0
  3. package/bin/binaries/probe-v0.6.0-rc266-x86_64-apple-darwin.tar.gz +0 -0
  4. package/bin/binaries/probe-v0.6.0-rc266-x86_64-pc-windows-msvc.zip +0 -0
  5. package/bin/binaries/probe-v0.6.0-rc266-x86_64-unknown-linux-musl.tar.gz +0 -0
  6. package/build/agent/ProbeAgent.js +640 -1441
  7. package/build/agent/engines/enhanced-vercel.js +0 -7
  8. package/build/agent/index.js +3972 -5938
  9. package/build/agent/mcp/index.js +6 -15
  10. package/build/agent/mcp/xmlBridge.js +24 -324
  11. package/build/agent/shared/prompts.js +25 -2
  12. package/build/agent/tasks/index.js +0 -1
  13. package/build/agent/tools.js +11 -181
  14. package/build/index.js +13 -35
  15. package/build/tools/common.js +15 -707
  16. package/build/tools/edit.js +7 -0
  17. package/build/tools/executePlan.js +2 -2
  18. package/build/tools/index.js +8 -11
  19. package/cjs/agent/ProbeAgent.cjs +3503 -5461
  20. package/cjs/index.cjs +4429 -6362
  21. package/package.json +2 -2
  22. package/src/agent/ProbeAgent.js +640 -1441
  23. package/src/agent/engines/enhanced-vercel.js +0 -7
  24. package/src/agent/index.js +10 -2
  25. package/src/agent/mcp/index.js +6 -15
  26. package/src/agent/mcp/xmlBridge.js +24 -324
  27. package/src/agent/shared/prompts.js +25 -2
  28. package/src/agent/tasks/index.js +0 -1
  29. package/src/agent/tools.js +11 -181
  30. package/src/index.js +13 -35
  31. package/src/tools/common.js +15 -707
  32. package/src/tools/edit.js +7 -0
  33. package/src/tools/executePlan.js +2 -2
  34. package/src/tools/index.js +8 -11
  35. package/bin/binaries/probe-v0.6.0-rc264-aarch64-apple-darwin.tar.gz +0 -0
  36. package/bin/binaries/probe-v0.6.0-rc264-aarch64-unknown-linux-musl.tar.gz +0 -0
  37. package/bin/binaries/probe-v0.6.0-rc264-x86_64-apple-darwin.tar.gz +0 -0
  38. package/bin/binaries/probe-v0.6.0-rc264-x86_64-pc-windows-msvc.zip +0 -0
  39. package/bin/binaries/probe-v0.6.0-rc264-x86_64-unknown-linux-musl.tar.gz +0 -0
  40. package/build/agent/xmlParsingUtils.js +0 -221
  41. package/src/agent/xmlParsingUtils.js +0 -221
@@ -46,13 +46,6 @@ export function createEnhancedVercelEngine(agent) {
46
46
  yield { type: 'text', content: chunk };
47
47
  }
48
48
 
49
- // Parse XML tool calls from the response if any
50
- // This maintains compatibility with existing XML tool format
51
- const toolCalls = agent.parseXmlToolCalls ? agent.parseXmlToolCalls(fullContent) : null;
52
- if (toolCalls && toolCalls.length > 0) {
53
- yield { type: 'tool_calls', toolCalls };
54
- }
55
-
56
49
  // Handle finish reason
57
50
  if (result.finishReason) {
58
51
  yield { type: 'finish', reason: result.finishReason };