From c5592729b3a583db084c72047041d71a43e5c490 Mon Sep 17 00:00:00 2001 From: "K.Y" Date: Tue, 26 Dec 2023 19:48:07 +0800 Subject: [PATCH] bug fix --- openai_forward/cache/database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openai_forward/cache/database.py b/openai_forward/cache/database.py index 69df935..9e26929 100644 --- a/openai_forward/cache/database.py +++ b/openai_forward/cache/database.py @@ -55,7 +55,7 @@ db_dict = FlaxKV( "REMOTE_DB", root_path_or_url=CACHE_ROOT_PATH_OR_URL, - backend="remote", + backend="leveldb", cache=cache, log="INFO", save_log=True, @@ -64,7 +64,7 @@ db_dict = FlaxKV( "REMOTE_DB", root_path_or_url=CACHE_ROOT_PATH_OR_URL, - backend="remote", + backend="leveldb", cache=cache, )