如果您在colab上打开这个笔记本,您可能需要安装LlamaIndex 🦙。
%pip install llama-index-embeddings-google
!pip install llama-index
# 导入
from llama_index.embeddings.google import GooglePaLMEmbedding
# 获取API密钥并创建嵌入
model_name = "models/embedding-gecko-001"
api_key = "YOUR API KEY"
embed_model = GooglePaLMEmbedding(model_name=model_name, api_key=api_key)
embeddings = embed_model.get_text_embedding("Google PaLM Embeddings.")
/opt/homebrew/lib/python3.11/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html from .autonotebook import tqdm as notebook_tqdm
print(f"Dimension of embeddings: {len(embeddings)}")
Dimension of embeddings: 768
embeddings[:5]
[0.028517298, -0.0028859433, -0.035110522, 0.021982985, -0.0039763353]