diff --git a/autogpt/prompts/prompt.py b/autogpt/prompts/prompt.py index 03b4bd4b..c1d8a2b5 100644 --- a/autogpt/prompts/prompt.py +++ b/autogpt/prompts/prompt.py @@ -108,6 +108,12 @@ Continue ({CFG.authorise_key}/{CFG.exit_key}): """ config = prompt_user() config.save(CFG.ai_settings_file) + if CFG.restrict_to_workspace: + logger.typewriter_log( + "NOTE:All files/directories created by this agent can be found inside its workspace at:", + Fore.YELLOW, + f"{CFG.workspace_path}", + ) # set the total api budget api_manager = ApiManager() api_manager.set_total_budget(config.api_budget)