From 104fd945e6ed09de3728070251b834fcfc13ac68 Mon Sep 17 00:00:00 2001 From: Sorawit Suriyakarn Date: Thu, 6 Feb 2025 21:16:53 +0700 Subject: [PATCH] fix: prompt typo in DeveloperRouter (#1041) --- crates/goose-mcp/src/developer/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/goose-mcp/src/developer/mod.rs b/crates/goose-mcp/src/developer/mod.rs index 7d9c0a86..a74820fc 100644 --- a/crates/goose-mcp/src/developer/mod.rs +++ b/crates/goose-mcp/src/developer/mod.rs @@ -57,7 +57,7 @@ impl DeveloperRouter { you would see from running on the command line. There will also be an indication of if the command succeeded or failed. - Avoid commands that produce a large amount of ouput, and consider piping those outputs to files. + Avoid commands that produce a large amount of output, and consider piping those outputs to files. If you need to run a long lived command, background it - e.g. `uvicorn main:app &` so that this tool does not run indefinitely.