# BioLLM2Vec This repository contains the model weights for the sentence-to-vector embedding model used in BioLitGPT. The main github repository is at https://github.com/jeffreyzhang92/BioLitGPT. Basic usage: ``` from llm2vec import LLM2Vec model = LLM2Vec.from_pretrained("McGill-NLP/LLM2Vec-Meta-Llama-3-8B-Instruct-mntp", peft_model_name_or_path="YBXL/BioLLM2Vec") embedding = model.encode("This is a sentence") ```