There was an error while loading. Please reload this page.
1 parent 665aa27 commit 0d1544bCopy full SHA for 0d1544b
.env.example
@@ -20,4 +20,14 @@ llm.model='gpt-3.5-turbo'
20
llm.context_size=16385
21
22
# how many rounds should this thing go?
23
-max_turns = 20
+max_turns = 20
24
+
25
+# The following four parameters are only relevant for the usecase rag
26
+# rag_database_folder_name: Name of the folder where the vector store will be saved.
27
+# rag_embedding: The name of the embedding model used. Currently only OpenAI api supported.
28
+# openai_api_key: API key that is used for the embedding model.
29
+# rag_return_token_limit: The upper bound for the RAG output.
30
+rag_database_folder_name = "vetorDB"
31
+rag_embedding = "text-embedding-3-small"
32
+openai_api_key = 'your-openai-key'
33
+rag_return_token_limit = 1000
0 commit comments