Skip to content

Commit

Permalink
Merge branch 'master' into add-options-to-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
collijk committed Jul 21, 2023
2 parents cbe1dd4 + 12d1263 commit d60a726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogpt/core/runner/client_lib/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def parse_next_ability(current_task, next_ability: dict) -> str:
def parse_ability_result(ability_result) -> str:
parsed_response = f"Ability: {ability_result['ability_name']}\n"
parsed_response += f"Ability Arguments: {ability_result['ability_args']}\n"
parsed_response = f"Ability Result: {ability_result['success']}\n"
parsed_response += f"Ability Result: {ability_result['success']}\n"
parsed_response += f"Message: {ability_result['message']}\n"
parsed_response += f"Data: {ability_result['new_knowledge']}\n"
return parsed_response

0 comments on commit d60a726

Please sign in to comment.