Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update prompt.py to clarify how to call commands #4027

Merged
merged 12 commits into from
May 15, 2023
2 changes: 1 addition & 1 deletion autogpt/prompts/prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def build_default_prompt_generator() -> PromptGenerator:
)
prompt_generator.add_constraint("No user assistance")
prompt_generator.add_constraint(
'Exclusively use the commands listed in double quotes e.g. "command name"'
ntindle marked this conversation as resolved.
Show resolved Hide resolved
"Exclusively use the commands listed below e.g. command_name"
)

# Add resources to the PromptGenerator object
Expand Down
Loading