agent: remove bold formatting from prompt

This commit is contained in:
Adrià Arrufat
2026-04-03 08:32:01 +02:00
parent a81a24229b
commit 20c31a3f71

View File

@@ -114,7 +114,7 @@ pub fn run(self: *Self) void {
}) catch "Ready.");
while (true) {
const line = self.terminal.readLine("\x1b[1m> \x1b[0m") orelse break;
const line = self.terminal.readLine("> ") orelse break;
defer self.terminal.freeLine(line);
if (line.len == 0) continue;