Skip to main content

Documentation Index

Fetch the complete documentation index at: https://arivu.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Integration

You can assign Openai as your generation engine either by passing kwargs into the connection object or through environment variables.
import os
from arivu import Arivu

os.environ["OPENAI_API_KEY"] = "..."

db = Arivu.connect(
    # DB arguments...
    llm_provider="openai",
    model="gpt-4o"
)
Ensure your arivu-ai[llm] optional dependencies are installed via pip install arivu-ai[openai] if necessary.