ts-pkgx
Version:
A library & CLI for managing packages
80 lines • 3.53 kB
TypeScript
/**
* **local-ai** - :robot: The free, Open Source alternative to OpenAI, Claude and others. Self-hosted and local-first. Drop-in replacement for OpenAI, running on consumer-grade hardware. No GPU required. Runs gguf, transformers, diffusers and many more models architectures. Features: Generate Text, Audio, Video, Images, Voice Cloning, Distributed, P2P inference
*
* @domain `localai.io`
* @programs `local-ai`
* @version `2.26.0` (37 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install local-ai`
* @aliases `local-ai`, `LocalAI`
* @dependencies `darwin:openmp.llvm.org@18` (includes OS-specific dependencies with `os:package` format)
* @companions `linux`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.localai
* // Or access via domain
* const samePkg = pantry.localaiio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "localai.io"
* console.log(pkg.description) // ":robot: The free, Open Source alternative to Op..."
* console.log(pkg.programs) // ["local-ai"]
* console.log(pkg.versions[0]) // "2.26.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/localai-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const localaiPackage: {
/**
* The display name of this package.
*/
name: 'localai.io';
/**
* The canonical domain name for this package.
*/
domain: 'localai.io';
/**
* Brief description of what this package does.
*/
description: ':robot: The free, Open Source alternative to OpenAI, Claude and others. Self-hosted and local-first. Drop-in replacement for OpenAI, running on consumer-grade hardware. No GPU required. Runs gguf, transformers, diffusers and many more models architectures. Features: Generate Text, Audio, Video, Images, Voice Cloning, Distributed, P2P inference';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/localai.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/mudler/LocalAI';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install local-ai';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['local-ai'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['linux'];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['darwin:openmp.llvm.org@18'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.26.0', '2.25.0', '2.24.2', '2.24.1', '2.24.0', '2.23.0', '2.22.1', '2.22.0', '2.21.1', '2.21.0', '2.20.1', '2.20.0', '2.19.4', '2.19.3', '2.19.2', '2.19.1', '2.19.0', '2.18.1', '2.18.0', '2.17.1', '2.17.0', '2.15.0', '2.14.0', '2.13.0', '2.12.4', '2.12.3', '2.12.1', '2.12.0', '2.11.0', '2.10.1', '2.10.0', '2.9.0', '2.8.2', '2.8.1', '2.8.0', '2.7.0', '2.6.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['local-ai', 'LocalAI']
};
export type LocalaiPackage = typeof localaiPackage