bravecode-cli 0.1.49 → 0.1.50

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/dist/cli-main.mjs CHANGED
@@ -37589,7 +37589,13 @@ ${instructions}` : instructions;
37589
37589
  if (rawText) {
37590
37590
  const { text: text2, toolCalls } = parser2.push(rawText);
37591
37591
  if (text2) {
37592
- yield { type: "text", text: text2 };
37592
+ const native = parser2.consumeNativeTags(text2);
37593
+ if (native.text) {
37594
+ yield { type: "text", text: native.text };
37595
+ }
37596
+ for (const call of native.toolCalls) {
37597
+ yield { type: "tool_call", toolCall: call };
37598
+ }
37593
37599
  }
37594
37600
  for (const call of toolCalls) {
37595
37601
  yield { type: "tool_call", toolCall: call };
@@ -38228,7 +38234,7 @@ var APP_VERSION, APP_NAME;
38228
38234
  var init_version = __esm({
38229
38235
  "src/version.ts"() {
38230
38236
  "use strict";
38231
- APP_VERSION = "0.1.49";
38237
+ APP_VERSION = "0.1.50";
38232
38238
  APP_NAME = "BraveCode";
38233
38239
  }
38234
38240
  });