# Embed data
data = [
{"id": "vec1", "text": "The stock market saw a sharp decline in response to rising interest rates."},
{"id": "vec2", "text": "Investors are shifting towards bonds as a safer investment amid economic uncertainty."},
{"id": "vec3", "text": "Apple's quarterly earnings exceeded expectations, driving its stock price higher."},
{"id": "vec4", "text": "Cryptocurrencies like Bitcoin remain volatile but attract significant investor interest."},
{"id": "vec5", "text": "The Federal Reserve hinted at a potential pause in rate hikes to assess inflation trends."},
]
import voyageai
vo = voyageai.Client(api_key=VOYAGE_API_KEY)
model_id = "voyage-finance-2"
def embed(docs: list[str], input_type: str) -> list[list[float]]:
embeddings = vo.embed(
docs,
model=model_id,
input_type=input_type
).embeddings
return embeddings
# Use "document" input type for documents
embeddings = embed([d["text"] for d in data], input_type="document")
vectors = []
for d, e in zip(data, embeddings):
vectors.append({
"id": d['id'],
"values": e,
"metadata": {'text': d['text']}
})
index.upsert(
vectors=vectors,
namespace="ns1"
)