Update default history directory
This commit is contained in:
parent
ff836e617c
commit
76bee1aed9
|
@ -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"
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue