Skip to content

Commit 45c00e9

Browse files
rename previous_questions.json to query_history.json
1 parent 641a860 commit 45c00e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

DocToolsLLM/utils/interact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def ask_user(settings: dict) -> Tuple[str, dict]:
126126

127127
# loading history from files
128128
prev_questions = []
129-
pp_file = cache_dir / "previous_questions.json"
129+
pp_file = cache_dir / "query_history.json"
130130
if pp_file.exists():
131131
pp_list = json.load(pp_file.open("r"))
132132
assert isinstance(pp_list, list), "Invalid cache type"

0 commit comments

Comments
 (0)