mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
Fix google result encoding.
This commit is contained in:
@@ -128,8 +128,8 @@ def execute_command(command_name: str, arguments):
|
||||
return google_result
|
||||
else:
|
||||
google_result = google_search(arguments["input"])
|
||||
safe_message = google_result.encode("utf-8", "ignore")
|
||||
return str(safe_message)
|
||||
safe_message = [google_result_single.encode('utf-8', 'ignore') for google_result_single in google_result]
|
||||
return str(safe_message)
|
||||
elif command_name == "memory_add":
|
||||
return memory.add(arguments["string"])
|
||||
elif command_name == "start_agent":
|
||||
|
||||
Reference in New Issue
Block a user