diff --git a/autogpt/commands/user_interaction.py b/autogpt/commands/user_interaction.py index e741859c..d5fa38db 100644 --- a/autogpt/commands/user_interaction.py +++ b/autogpt/commands/user_interaction.py @@ -25,4 +25,5 @@ from autogpt.command_decorator import command }, ) def ask_user(question: str, agent: Agent) -> str: - return clean_input(agent.config, question) + resp = clean_input(agent.config, f"{agent.ai_config.ai_name} asks: '{question}': ") + return f"The user's answer: '{resp}'"