Optimized for finance retrieval and RAG. See blog post for details. Visit the Voyage documentation for an overview of all Voyage embedding models and rerankers.Access to models is through the Voyage Python client. You must register for Voyage API keys to access.
query = "Tell me about the tech company known as Apple"# Use "query" input type for queriesx = embed([query], input_type="query")results = index.query( namespace="ns1", vector=x[0], top_k=3, include_values=False, include_metadata=True)print(results)
Lorem Ipsum
Was this page helpful?
Assistant
Responses are generated using AI and may contain mistakes.