This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# following tutorial at https://weaviate.io/developers/weaviate/tutorials/multi-vector-embeddings#option-1-colbert-model-integration | |
import os | |
import weaviate | |
from weaviate.classes.init import Auth | |
from dotenv import load_dotenv | |
# Load environment variables | |
load_dotenv() | |
# Recommended: save sensitive data as environment variables |