Remove unnecessary memory call

This commit is contained in:
James Collins
2023-04-23 16:54:32 -07:00
parent a28b8906a6
commit 43fa67ca81

View File

@@ -9,11 +9,9 @@ from requests import Response
from requests.compat import urljoin
from autogpt.config import Config
from autogpt.memory import get_memory
from autogpt.processing.html import extract_hyperlinks, format_hyperlinks
CFG = Config()
memory = get_memory(CFG)
session = requests.Session()
session.headers.update({"User-Agent": CFG.user_agent})