Skip to content

Commit 0d1544b

Browse files
committed
added rag parameters to .env.example
1 parent 665aa27 commit 0d1544b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

‎.env.example‎

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,14 @@ llm.model='gpt-3.5-turbo'
2020
llm.context_size=16385
2121

2222
# how many rounds should this thing go?
23-
max_turns = 20
23+
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

Comments
 (0)