Skip to content

Commit

Permalink
Merge pull request #2129 from XFFXFF/fix_missing_import
Browse files Browse the repository at this point in the history
fix a missing import
  • Loading branch information
richbeales committed Apr 17, 2023
2 parents 2bb0ecf + 2b87245 commit ed89d9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autogpt/memory/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

import dataclasses
import os
from typing import Any
from typing import Any, List

import numpy as np
import orjson

from autogpt.memory.base import MemoryProviderSingleton
from autogpt.llm_utils import create_embedding_with_ada
from autogpt.memory.base import MemoryProviderSingleton

EMBED_DIM = 1536
SAVE_OPTIONS = orjson.OPT_SERIALIZE_NUMPY | orjson.OPT_SERIALIZE_DATACLASS
Expand Down

0 comments on commit ed89d9f

Please sign in to comment.