mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-02-03 05:14:28 +01:00
Fixed error when google search contains funny characters
This commit is contained in:
@@ -105,9 +105,11 @@ def execute_command(command_name: str, arguments):
|
||||
# search method
|
||||
key = CFG.google_api_key
|
||||
if key and key.strip() and key != "your-google-api-key":
|
||||
return google_official_search(arguments["input"])
|
||||
google_result = google_official_search(arguments["input"])
|
||||
else:
|
||||
return google_search(arguments["input"])
|
||||
google_result = google_search(arguments["input"])
|
||||
safe_message = google_result.encode('utf-8', 'ignore')
|
||||
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