From 6755c6db9578b81cb0f54d62094b4f130aa143f3 Mon Sep 17 00:00:00 2001 From: Michael Neale Date: Sat, 26 Oct 2024 10:35:59 +1100 Subject: [PATCH] feat: tiny change so you know what processing is doing (#196) --- src/goose/cli/session.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/goose/cli/session.py b/src/goose/cli/session.py index 9e5d1079..fac4e3ba 100644 --- a/src/goose/cli/session.py +++ b/src/goose/cli/session.py @@ -208,8 +208,9 @@ class Session: committed = [self.exchange.messages[-1]] try: - self.status_indicator.update("responding") + self.status_indicator.update("processing request") response = self.exchange.generate() + self.status_indicator.update("got response, processing") committed.append(response) if response.text: @@ -223,7 +224,7 @@ class Session: message = Message(role="user", content=content) committed.append(message) self.exchange.add(message) - self.status_indicator.update("responding") + self.status_indicator.update("processing tool results") response = self.exchange.generate() committed.append(response)