chore: bump coding-agent to 0.7.14 - fix Anthropic OAuth and Mistral API compatibility

This commit is contained in:
Mario Zechner 2025-11-17 12:46:59 +01:00
parent a5ed6ab641
commit 063b7e0f11
9 changed files with 303 additions and 7 deletions

View file

@ -56,7 +56,8 @@ export class AssistantMessageComponent extends Container {
this.contentContainer.addChild(new Text(chalk.red("\nAborted"), 1, 0));
} else if (message.stopReason === "error") {
const errorMsg = message.errorMessage || "Unknown error";
this.contentContainer.addChild(new Text(chalk.red(`Error: ${errorMsg}`)));
this.contentContainer.addChild(new Spacer(1));
this.contentContainer.addChild(new Text(chalk.red(`Error: ${errorMsg}`), 1, 0));
}
}
}