Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
YoanSallami committed Oct 9, 2023
1 parent 0a03a98 commit 7c8dd39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
hybrid-agi-cli:
image: hybrid-agi-cli:0.0.1
image: hybrid-agi-cli:0.0.2
working_dir: /HybridAGI
build:
context: .
Expand Down
2 changes: 1 addition & 1 deletion hybridagi/interpreter/graph_program_interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def revert_tool(self, n_steps: str):

def call_program_tool(self, program_name: str):
if not self.program_memory.exists(program_name):
return f"Error occured while calling '{program_name}': "+
return f"Error occured while calling '{program_name}': "+\
"Not existing, please verify that you have the correct name"
starting_node = self.get_starting_node(program_name)
try:
Expand Down

0 comments on commit 7c8dd39

Please sign in to comment.