Update default history directory

This commit is contained in:
Paul Harrison 2024-02-23 11:25:27 +00:00
parent ff836e617c
commit 76bee1aed9
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "llm-chat"
version = "1.1.4"
version = "1.1.5"
description = "A general CLI interface for large language models."
authors = ["Paul Harrison <paul@harrison.sh>"]
readme = "README.md"

View File

@ -15,7 +15,7 @@ class Model(StrEnum):
DEFAULT_MODEL = Model.GPT3
DEFAULT_TEMPERATURE = 0.7
DEFAULT_HISTORY_DIR = Path.home() / ".llm_chat"
DEFAULT_HISTORY_DIR = Path.home() / ".llm_chat" / "history"
class OpenAISettings(BaseSettings):