We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d7e8cf commit b239369Copy full SHA for b239369
apps/chatbot-server/.env.example
@@ -0,0 +1,9 @@
1
+# MongoDB config
2
+MONGODB_CONNECTION_URI="<MongoDB connection URI with Atlas Vector Search configured on 'embedded_content'>"
3
+VECTOR_SEARCH_INDEX_NAME="vector_index" # or whatever your index name is
4
+MONGODB_DATABASE_NAME="mongodb-chatbot-framework-chatbot" # or whatever your database name is. must contain vector search index.
5
+
6
+# OpenAI config
7
+OPENAI_API_KEY=<OpenAI API key>
8
+OPENAI_EMBEDDING_MODEL="text-embedding-ada-002" # or other model
9
+OPENAI_CHAT_COMPLETION_MODEL="gpt-3.5-turbo" # or other model
0 commit comments