From 8dcc21052f0c69b15872d97fcf4c483061a6f8c1 Mon Sep 17 00:00:00 2001 From: Justin Bassett-Green Date: Sat, 22 Jul 2023 18:53:08 -0500 Subject: [PATCH] Add chat-model param in sample config yml and document (#341) * add chat-model config param to docs * add chat-model param to sample config yml --- config/khoj_sample.yml | 1 + docs/chat.md | 1 + 2 files changed, 2 insertions(+) diff --git a/config/khoj_sample.yml b/config/khoj_sample.yml index 18296e20..a30b02d9 100644 --- a/config/khoj_sample.yml +++ b/config/khoj_sample.yml @@ -53,4 +53,5 @@ processor: conversation: openai-api-key: # "YOUR_OPENAI_API_KEY" model: "text-davinci-003" + chat-model: "gpt-3.5-turbo" conversation-logfile: "~/.khoj/processor/conversation/conversation_logs.json" diff --git a/docs/chat.md b/docs/chat.md index df487d15..74a24b27 100644 --- a/docs/chat.md +++ b/docs/chat.md @@ -20,6 +20,7 @@ - openai-api-key: # "YOUR_OPENAI_API_KEY" + openai-api-key: sk-aaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhh model: "text-davinci-003" + chat-model: "gpt-3.5-turbo" conversation-logfile: "~/.khoj/processor/conversation/conversation_logs.json" ```