From b294cac6c4631cdb23371165a3ba3c4790dd8a61 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 20 Aug 2025 15:56:02 -0500 Subject: [PATCH 1/4] test INTPYTHON-669 --- .evergreen/config.yml | 25 +++++++++++------------ llama-index-python-vectorstore/config.env | 2 ++ 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.evergreen/config.yml b/.evergreen/config.yml index 1eca3c3..12cb003 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -386,19 +386,18 @@ buildvariants: # - name: test-chatgpt-retrieval-plugin-remote # batchtime: 10080 # 1 week - # TODO: INTPYTHON-669 - # - name: test-llama-index-vectorstore-python-rhel - # display_name: LlamaIndex RHEL Vector Store - # tags: [python] - # expansions: - # DIR: llama-index-python-vectorstore - # run_on: - # - rhel87-small - # tasks: - # - name: test-llama-index-local - # # TODO: INTPYTHON-440 - # # - name: test-llama-index-remote - # # batchtime: 10080 # 1 week + - name: test-llama-index-vectorstore-python-rhel + display_name: LlamaIndex RHEL Vector Store + tags: [python] + expansions: + DIR: llama-index-python-vectorstore + run_on: + - rhel87-small + tasks: + - name: test-llama-index-local + # TODO: INTPYTHON-440 + # - name: test-llama-index-remote + # batchtime: 10080 # 1 week - name: test-docarray-python-rhel display_name: DocArray RHEL diff --git a/llama-index-python-vectorstore/config.env b/llama-index-python-vectorstore/config.env index 00d312b..f3e29b4 100644 --- a/llama-index-python-vectorstore/config.env +++ b/llama-index-python-vectorstore/config.env @@ -1,3 +1,5 @@ REPO_NAME=llama_index REPO_ORG=run-llama DATABASE=llama_index_test_db +REPO_ORG=blink1073 +REPO_BRANCH=INTPYTHON-669 From 1c3b5baef7f5ce75f1d2bf91b37d28354b328831 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 20 Aug 2025 16:12:30 -0500 Subject: [PATCH 2/4] fix env var usage --- llama-index-python-vectorstore/run.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/llama-index-python-vectorstore/run.sh b/llama-index-python-vectorstore/run.sh index a7e331f..65163ae 100644 --- a/llama-index-python-vectorstore/run.sh +++ b/llama-index-python-vectorstore/run.sh @@ -2,7 +2,7 @@ set -eu -# Get the MONGODB_URI and OPENAI_API_KEY. +# Get the MONGODB_URI and AZURE_OPENAI_API_KEY. SCRIPT_DIR=$(realpath "$(dirname ${BASH_SOURCE[0]})") ROOT_DIR=$(dirname $SCRIPT_DIR) . $ROOT_DIR/env.sh @@ -24,8 +24,6 @@ pip install uv # Run tests. UV_PYTHON=$PYTHON_BINARY \ -MONGODB_URI="$MONGODB_URI" \ -OPENAI_API_KEY="$OPENAI_API_KEY" \ MONGODB_DATABASE="llama_index_test_db" \ MONGODB_COLLECTION="llama_index_test_vectorstore" \ MONGODB_INDEX="vector_index" \ From fd1b45d75a3088db9db801a097b94bc3d056cf29 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 21 Aug 2025 10:54:30 -0500 Subject: [PATCH 3/4] update gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7bf5cf6..fa20a3d 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,4 @@ env.sh haystack-fulltext/haystack-core-integrations haystack-embeddings/haystack-core-integrations pymongo-voyageai/pymongo-voyageai +llama-index-python-vectorstore/llama_index/ From d927705781c46e1b45d3bd1baa9a613208639fd6 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 21 Aug 2025 13:02:12 -0500 Subject: [PATCH 4/4] use upstream --- llama-index-python-vectorstore/config.env | 2 -- 1 file changed, 2 deletions(-) diff --git a/llama-index-python-vectorstore/config.env b/llama-index-python-vectorstore/config.env index f3e29b4..00d312b 100644 --- a/llama-index-python-vectorstore/config.env +++ b/llama-index-python-vectorstore/config.env @@ -1,5 +1,3 @@ REPO_NAME=llama_index REPO_ORG=run-llama DATABASE=llama_index_test_db -REPO_ORG=blink1073 -REPO_BRANCH=INTPYTHON-669