mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 14:34:23 +01:00
Update commands.py
Just import datetime from datetime library.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
import browse
|
import browse
|
||||||
import json
|
import json
|
||||||
import memory as mem
|
import memory as mem
|
||||||
import datetime
|
from datetime import datetime
|
||||||
import agent_manager as agents
|
import agent_manager as agents
|
||||||
import speak
|
import speak
|
||||||
from config import Config
|
from config import Config
|
||||||
@@ -110,7 +110,7 @@ def execute_command(command_name, arguments):
|
|||||||
def get_datetime():
|
def get_datetime():
|
||||||
"""Return the current date and time"""
|
"""Return the current date and time"""
|
||||||
return "Current date and time: " + \
|
return "Current date and time: " + \
|
||||||
datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
||||||
|
|
||||||
|
|
||||||
def google_search(query, num_results=8):
|
def google_search(query, num_results=8):
|
||||||
@@ -122,6 +122,7 @@ def google_search(query, num_results=8):
|
|||||||
return json.dumps(search_results, ensure_ascii=False, indent=4)
|
return json.dumps(search_results, ensure_ascii=False, indent=4)
|
||||||
|
|
||||||
def google_official_search(query, num_results=8):
|
def google_official_search(query, num_results=8):
|
||||||
|
"""Return the results of a google search using the official Google API"""
|
||||||
from googleapiclient.discovery import build
|
from googleapiclient.discovery import build
|
||||||
from googleapiclient.errors import HttpError
|
from googleapiclient.errors import HttpError
|
||||||
import json
|
import json
|
||||||
|
|||||||
Reference in New Issue
Block a user