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/.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/ 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" \