UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.51 kB
/** * **llm** - Access large language models from the command-line * * @domain `llm.datasette.io` * @programs `llm` * @version `0.26.0` (30 versions available) * @versions From newest version to oldest. * * @install `launchpad install llm` * @aliases `llm` * @dependencies `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.llm * // Or access via domain * const samePkg = pantry.llmdatasetteio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "llm.datasette.io" * console.log(pkg.description) // "Access large language models from the command-line" * console.log(pkg.programs) // ["llm"] * console.log(pkg.versions[0]) // "0.26.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/llm-datasette-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const llmPackage: { /** * The display name of this package. */ name: 'llm.datasette.io'; /** * The canonical domain name for this package. */ domain: 'llm.datasette.io'; /** * Brief description of what this package does. */ description: 'Access large language models from the command-line'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/llm.datasette.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install llm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['llm']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.26.0', '0.25.0', '0.24.2', '0.24.1', '0.24.0', '0.23.0', '0.22.0', '0.21.0', '0.20.0', '0.19.1', '0.19.0', '0.18.0', '0.17.1', '0.17.0', '0.16.0', '0.15.0', '0.14.0', '0.13.1', '0.13.0', '0.12.0', '0.11.2', '0.11.1', '0.11.0', '0.10.0', '0.9.0', '0.8.1', '0.8.0', '0.7.1', '0.7.0', '0.6.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['llm'] }; export type LlmPackage = typeof llmPackage