@mcp-use/agent 2.0.0-beta.1 → 2.0.0-beta.3

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.
@@ -2322,6 +2322,9 @@ async function* runToolLoop(params) {
2322
2322
  yield ev;
2323
2323
  }
2324
2324
  } catch (err) {
2325
+ if (err instanceof LlmRequestError) {
2326
+ throw err;
2327
+ }
2325
2328
  yield {
2326
2329
  type: "error",
2327
2330
  message: err instanceof Error ? err.message : String(err)
@@ -2549,7 +2552,7 @@ function providerConfigFromOptions(provider, model, config) {
2549
2552
  }
2550
2553
 
2551
2554
  // src/version.ts
2552
- var VERSION = "2.0.0-beta.0";
2555
+ var VERSION = "2.0.0-beta.2";
2553
2556
  function getPackageVersion() {
2554
2557
  return VERSION;
2555
2558
  }