@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.
@@ -2366,6 +2366,9 @@ async function* runToolLoop(params) {
2366
2366
  yield ev;
2367
2367
  }
2368
2368
  } catch (err) {
2369
+ if (err instanceof LlmRequestError) {
2370
+ throw err;
2371
+ }
2369
2372
  yield {
2370
2373
  type: "error",
2371
2374
  message: err instanceof Error ? err.message : String(err)
@@ -2593,7 +2596,7 @@ function providerConfigFromOptions(provider, model, config) {
2593
2596
  }
2594
2597
 
2595
2598
  // src/version.ts
2596
- var VERSION = "2.0.0-beta.0";
2599
+ var VERSION = "2.0.0-beta.2";
2597
2600
  function getPackageVersion() {
2598
2601
  return VERSION;
2599
2602
  }