From 48569e86319a842985424f9cf137fc73463254bb Mon Sep 17 00:00:00 2001 From: Casey Clements Date: Thu, 31 Oct 2024 15:14:16 -0400 Subject: [PATCH 1/3] Point chatgpt-retrieval-plugin back to openai main branch --- .evergreen/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.evergreen/config.yml b/.evergreen/config.yml index bb56baf..20ea895 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -150,8 +150,7 @@ buildvariants: expansions: DIR: chatgpt-retrieval-plugin REPO_NAME: chatgpt-retrieval-plugin - # TODO - Update CLONE_URL: [PYTHON-4291] [PYTHON-4129] - CLONE_URL: -b bugfix/broken-link-in-readme --single-branch https://github.com/caseyclements/chatgpt-retrieval-plugin.git + CLONE_URL: https://github.com/openai/chatgpt-retrieval-plugin.git DATABASE: chatgpt_retrieval_plugin_test_db run_on: - rhel87-small From da70a8f7ae3fc4b38a57fc6e77a60a29d562e5fc Mon Sep 17 00:00:00 2001 From: Casey Clements Date: Thu, 31 Oct 2024 15:22:44 -0400 Subject: [PATCH 2/3] Added notes on Shruti's LlamaIndex RHEL KV Store --- .evergreen/config.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.evergreen/config.yml b/.evergreen/config.yml index 20ea895..6012ee1 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -109,6 +109,19 @@ tasks: - func: "execute tests" buildvariants: + - name: test-llama-index-kvstore-rhel + # TODO - Maintainer has pushed back on this. + display_name: LlamaIndex RHEL KV Store + expansions: + DIR: llama-index-python-kvstore + REPO_NAME: llama_index + # TODO - Update CLONE_URL: [PYTHON-4522] [INTPYTHON-326] + CLONE_URL: -b PYTHON-4522 --single-branch https://github.com/shruti-sridhar/llama_index.git + DATABASE: llama_index_test_db + run_on: + - rhel87-small + tasks: + - name: test-llama-index - name: test-semantic-kernel-python-rhel display_name: Semantic-Kernel RHEL Python expansions: @@ -157,19 +170,6 @@ buildvariants: tasks: - name: test-chatgpt-retrieval-plugin - - name: test-llama-index-kvstore-rhel - display_name: LlamaIndex RHEL KV Store - expansions: - DIR: llama-index-python-kvstore - REPO_NAME: llama_index - # TODO - Update CLONE_URL: [PYTHON-4522] - CLONE_URL: -b PYTHON-4522 --single-branch https://github.com/shruti-sridhar/llama_index.git - DATABASE: llama_index_test_db - run_on: - - rhel87-small - tasks: - - name: test-llama-index - - name: test-llama-index-vectorstore-rhel display_name: LlamaIndex RHEL Vector Store expansions: From 0a18a3295830eedd18fa70899380aea2808fe364 Mon Sep 17 00:00:00 2001 From: Casey Clements Date: Thu, 31 Oct 2024 17:51:05 -0400 Subject: [PATCH 3/3] Fixed typo in chatgpt run.sh --- chatgpt-retrieval-plugin/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatgpt-retrieval-plugin/run.sh b/chatgpt-retrieval-plugin/run.sh index cf19c7c..4445ed0 100644 --- a/chatgpt-retrieval-plugin/run.sh +++ b/chatgpt-retrieval-plugin/run.sh @@ -24,7 +24,7 @@ $PYTHON_BINARY -m poetry install --with dev # Run tests. Sensitive variables in Evergreen come from Evergeen project: ai-ml-pipeline-testing/ # shellcheck disable=SC2154 OPENAI_API_KEY=$openai_api_key \ -DATASTORE="mongodb-atlas" \ +DATASTORE="mongodb" \ BEARER_TOKEN="staylowandkeepmoving" \ MONGODB_URI=$chatgpt_retrieval_plugin_mongodb_uri \ MONGODB_DATABASE="chatgpt_retrieval_plugin_test_db" \