UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.56 kB
/** * **auto-gpt** - AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters. * * @domain `agpt.co` * @programs `auto-gpt` * @version `0.4.7` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install auto-gpt` * @aliases `auto-gpt` * @dependencies `python.org>=3.10<3.12`, `redis.io^7`, `tea.xyz^0` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.autogpt * // Or access via domain * const samePkg = pantry.agptco * console.log(pkg === samePkg) // true * console.log(pkg.name) // "agpt.co" * console.log(pkg.description) // "AutoGPT is the vision of accessible AI for ever..." * console.log(pkg.programs) // ["auto-gpt"] * console.log(pkg.versions[0]) // "0.4.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/agpt-co.md * @see https://ts-pkgx.netlify.app/usage */ export declare const autogptPackage: { /** * The display name of this package. */ name: 'agpt.co'; /** * The canonical domain name for this package. */ domain: 'agpt.co'; /** * Brief description of what this package does. */ description: 'AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/agpt.co/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install auto-gpt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['auto-gpt']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3.10<3.12', 'redis.io^7', 'tea.xyz^0']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.7', '0.4.6', '0.4.5', '0.4.4', '0.4.3', '0.4.2', '0.4.0', '0.3.1', '0.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['auto-gpt'] }; export type AutogptPackage = typeof autogptPackage