UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.76 kB
/** * **Vanna** - 🤖 Chat with your SQL database 📊. Accurate Text-to-SQL Generation via LLMs using RAG 🔄. * * @domain `vanna.ai` * @version `0.7.9` (42 versions available) * @versions From newest version to oldest. * * @install `launchpad install +vanna.ai -- $SHELL -i` * @aliases `Vanna` * @dependencies `python.org~3.12`, `linux:openmp.llvm.org^17 # needed by chromadb` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.Vanna * // Or access via domain * const samePkg = pantry.vannaai * console.log(pkg === samePkg) // true * console.log(pkg.name) // "vanna.ai" * console.log(pkg.description) // "🤖 Chat with your SQL database 📊. Accurate Tex..." * console.log(pkg.versions[0]) // "0.7.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/vanna-ai.md * @see https://ts-pkgx.netlify.app/usage */ export declare const vannaPackage: { /** * The display name of this package. */ name: 'vanna.ai'; /** * The canonical domain name for this package. */ domain: 'vanna.ai'; /** * Brief description of what this package does. */ description: '🤖 Chat with your SQL database 📊. Accurate Text-to-SQL Generation via LLMs using RAG 🔄.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/vanna.ai/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/vanna-ai/vanna'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +vanna.ai -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['python.org~3.12', 'linux:openmp.llvm.org^17 # needed by chromadb']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.9', '0.7.8', '0.7.7', '0.7.6', '0.7.5', '0.7.4', '0.7.3', '0.7.2', '0.7.1', '0.7.0', '0.6.6', '0.6.5', '0.6.4', '0.6.3', '0.6.2', '0.6.1', '0.6.0', '0.5.5', '0.5.4', '0.5.3', '0.5.2', '0.5.1', '0.5.0', '0.4.3', '0.4.2', '0.4.1', '0.4.0', '0.3.4', '0.3.3', '0.3.2', '0.3.1', '0.3.0', '0.2.1', '0.2.0', '0.1.1', '0.0.38', '0.0.37', '0.0.36', '0.0.35', '0.0.34', '0.0.33', '0.0.32']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['Vanna'] }; export type VannaPackage = typeof vannaPackage