From 9b2d794de6b96d8a965f9719d84feba082e064a2 Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Wed, 10 Jan 2024 20:21:53 -0800 Subject: [PATCH] reformat --- memgpt/cli/cli_load.py | 1 - 1 file changed, 1 deletion(-) diff --git a/memgpt/cli/cli_load.py b/memgpt/cli/cli_load.py index fe9a8243..c537f7df 100644 --- a/memgpt/cli/cli_load.py +++ b/memgpt/cli/cli_load.py @@ -33,7 +33,6 @@ app = typer.Typer() def insert_passages_into_source(passages: List[Passage], source_name: str, user_id: uuid.UUID, config: MemGPTConfig): - """Insert a list of passages into a source by updating storage connectors and metadata store""" storage = StorageConnector.get_storage_connector(TableType.PASSAGES, config, user_id) orig_size = storage.size()