OnlyTheTruth03's picture
Initial RAG bot
709c859
raw
history blame contribute delete
182 Bytes
from sentence_transformers import SentenceTransformer
_model = SentenceTransformer("all-MiniLM-L6-v2")
def embed_texts(texts):
return _model.encode(texts, show_progress_bar=True)