mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Remove deprecated conversation_history field from config
This commit is contained in:
parent
5a686b7be9
commit
ea28897cdd
2 changed files with 1 additions and 3 deletions
|
@ -34,5 +34,4 @@ search-type:
|
|||
processor:
|
||||
conversation:
|
||||
openai-api-key: null
|
||||
conversation-logfile: "tests/data/.conversation_logs.json"
|
||||
conversation-history: null
|
||||
conversation-logfile: "tests/data/.conversation_logs.json"
|
|
@ -51,7 +51,6 @@ class SearchTypeConfig(ConfigBase):
|
|||
class ConversationProcessorConfig(ConfigBase):
|
||||
openai_api_key: Optional[str]
|
||||
conversation_logfile: Optional[str]
|
||||
conversation_history: Optional[str]
|
||||
|
||||
class ProcessorConfigModel(ConfigBase):
|
||||
conversation: Optional[ConversationProcessorConfig]
|
||||
|
|
Loading…
Reference in a new issue