Thanks to visit codestin.com
Credit goes to developers.llamaindex.ai

Skip to content
LlamaIndex Framework
Integrations
Embeddings

LLMRails Embeddings

If you’re opening this Notebook on colab, you will probably need to install LlamaIndex πŸ¦™.

%pip install llama-index-embeddings-llm-rails
!pip install llama-index
# imports
from llama_index.embeddings.llm_rails import LLMRailsEmbedding
# get credentials and create embeddings
import os
api_key = os.environ.get("API_KEY", "your-api-key")
model_id = os.environ.get("MODEL_ID", "your-model-id")
embed_model = LLMRailsEmbedding(model_id=model_id, api_key=api_key)
embeddings = embed_model.get_text_embedding(
"It is raining cats and dogs here!"
)