Skip to main content

llama-index packs vanna integration

Project description

Vanna AI LLamaPack

Vanna AI is an open-source RAG framework for SQL generation. It works in two steps:

  1. Train a RAG model on your data
  2. Ask questions (use reference corpus to generate SQL queries that can run on your db).

Check out the Github project and the docs for more details.

This LlamaPack creates a simple VannaQueryEngine with vanna, ChromaDB and OpenAI, and allows you to train and ask questions over a SQL database.

CLI Usage

You can download llamapacks directly using llamaindex-cli, which comes installed with the llama-index python package:

llamaindex-cli download-llamapack VannaPack --download-dir ./vanna_pack

You can then inspect the files at ./vanna_pack and use them as a template for your own project!

Code Usage

You can download the pack to a ./vanna_pack directory:

from llama_index.llama_pack import download_llama_pack

# download and install dependencies
VannaPack = download_llama_pack("VannaPack", "./vanna_pack")

From here, you can use the pack, or inspect and modify the pack in ./vanna_pack.

Then, you can set up the pack like so:

pack = VannaPack(
    openai_api_key="<openai_api_key>",
    sql_db_url="chinook.db",
    openai_model="gpt-3.5-turbo",
)

The run() function is a light wrapper around llm.complete().

response = pack.run("List some sample albums")

You can also use modules individually.

query_engine = pack.get_modules()["vanna_query_engine"]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llama_index_packs_vanna-0.1.4.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

llama_index_packs_vanna-0.1.4-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page