Currently super-experimental-WIP. An attempt at a Python library that supports multiple vector databases with the same interface.
See pinecone/hello.py.
Sign up for Pinecone, get an API_TOKEN
and a PROJECT_ID
.
Run a working sample as follows.
API_TOKEN=... PROJECT_ID=... ENDPOINT=https://us-west4-gcp-free.pinecone.io poetry run samples/pinecone/hello.py
Download and run OpenSearch.
docker pull opensearchproject/opensearch:latest
docker run -d -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" opensearchproject/opensearch:latest
Run a working sample as follows.
USERNAME=admin PASSWORD=admin ENDPOINT=https://localhost:9200 poetry run samples/open_search/hello.py
See DEVELOPER_GUIDE.
This project is licensed under the Apache v2.0 License.
Copyright Daniel Doubrovkine, and contributors.