Skip to content

Commit

Permalink
fix memory client
Browse files Browse the repository at this point in the history
  • Loading branch information
yanxi0830 committed Sep 19, 2024
1 parent 6302a1e commit ca4b87a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llama_stack/apis/memory/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

import fire
import httpx
from termcolor import cprint

from llama_stack.distribution.datatypes import RemoteProviderConfig
from termcolor import cprint

from llama_stack.apis.memory import * # noqa: F403
from llama_stack.providers.utils.memory.file_utils import data_url_from_file
Expand Down Expand Up @@ -151,7 +151,7 @@ async def run_main(host: str, port: int, stream: bool):
]

this_dir = os.path.dirname(__file__)
files = [Path(this_dir).parent.parent / "CONTRIBUTING.md"]
files = [Path(this_dir).parent.parent.parent / "CONTRIBUTING.md"]
documents += [
MemoryBankDocument(
document_id=f"num-{i}",
Expand Down

0 comments on commit ca4b87a

Please sign in to comment.