Skip to content

Commit

Permalink
AutoGPT: Improve input prompt appearance (#5211)
Browse files Browse the repository at this point in the history
Adds space between users input and "Input:"
  • Loading branch information
WilliamEspegren authored Sep 15, 2023
1 parent 7320f9d commit 058e679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogpts/autogpt/autogpt/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def get_user_feedback(
console_input = clean_input(config, "Waiting for your response...")
else:
console_input = clean_input(
config, Fore.MAGENTA + "Input:" + Style.RESET_ALL
config, Fore.MAGENTA + "Input: " + Style.RESET_ALL
)

# Parse user input
Expand Down

0 comments on commit 058e679

Please sign in to comment.