From 0c97ea61c50687c8cf167309eee2d0efa49ec309 Mon Sep 17 00:00:00 2001 From: henri123lemoine Date: Tue, 27 Jun 2023 01:46:19 -0400 Subject: [PATCH] Added settings file --- src/dataset/settings.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/dataset/settings.py diff --git a/src/dataset/settings.py b/src/dataset/settings.py new file mode 100644 index 0000000..892408a --- /dev/null +++ b/src/dataset/settings.py @@ -0,0 +1,6 @@ + +### PINECONE ### +PINECONE_INDEX_NAME = "stampy-chat-embeddings-test" +PINECONE_VALUES_DIMS = 1536 +PINECONE_METRIC = "cosine" +PINECONE_METADATA_ENTRIES = ["entry_id", "source", "title", "authors", "text"] \ No newline at end of file