UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.12 kB
/** * **gpt4all** - Locally run an Assistant-Tuned Chat-Style LLM * * @domain `github.com/nomic-ai/gpt4all` * @programs `gpt4all` * @version `2023.3.29` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gpt4all` * @name `gpt4all` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gpt4all * // Or access via domain * const samePkg = pantry.githubcomnomicaigpt4all * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gpt4all" * console.log(pkg.description) // "Locally run an Assistant-Tuned Chat-Style LLM" * console.log(pkg.programs) // ["gpt4all"] * console.log(pkg.versions[0]) // "2023.3.29" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/nomic-ai/gpt4all.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gpt4allPackage: { /** * The display name of this package. */ name: 'gpt4all'; /** * The canonical domain name for this package. */ domain: 'github.com/nomic-ai/gpt4all'; /** * Brief description of what this package does. */ description: 'Locally run an Assistant-Tuned Chat-Style LLM'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/nomic-ai/gpt4all/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gpt4all'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gpt4all']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.3.29']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type Gpt4allPackage = typeof gpt4allPackage