Weaviate <> OpenAI

Feb 13, 2023
Open in Github

​Weaviate is an open-source vector search engine (docs - Github) that can store and search through OpenAI embeddings and data objects. The database allows you to do similarity search, hybrid search (the combining of multiple search techniques, such as keyword-based and vector search), and generative search (like Q&A). Weaviate also supports a wide variety of OpenAI-based modules (e.g., text2vec-openai, qna-openai), allowing you to vectorize and query data fast and efficiently.

You can run Weaviate (including the OpenAI modules if desired) in three ways:

  1. Open source inside a Docker-container (example)
  2. Using the Weaviate Cloud Service (get started)
  3. In a Kubernetes cluster (learn more)

Examples

This folder contains a variety of Weaviate and OpenAI examples.

NameDescriptionlanguageGoogle Colab
Getting Started with Weaviate and OpenAIA simple getting started for semantic vector search using the OpenAI vectorization module in Weaviate (text2vec-openai)Python Notebooklink
Hybrid Search with Weaviate and OpenAIA simple getting started for hybrid search using the OpenAI vectorization module in Weaviate (text2vec-openai)Python Notebooklink
Question Answering with Weaviate and OpenAIA simple getting started for question answering (Q&A) using the OpenAI Q&A module in Weaviate (qna-openai)Python Notebooklink
Docker-compose exampleA Docker-compose file with all OpenAI modules enabledDocker