ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.42 kB
TypeScript
/**
* **whisper** - Robust Speech Recognition via Large-Scale Weak Supervision
*
* @domain `openai.com/whisper`
* @programs `whisper`
* @version `20240930.0.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install whisper`
* @name `whisper`
* @dependencies `python.org~3.11`, `ffmpeg.org^6.1`, `huggingface.co^0.19`, ... (+1 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.whisper
* // Or access via domain
* const samePkg = pantry.openaicomwhisper
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "whisper"
* console.log(pkg.description) // "Robust Speech Recognition via Large-Scale Weak ..."
* console.log(pkg.programs) // ["whisper"]
* console.log(pkg.versions[0]) // "20240930.0.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/openai-com/whisper.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const whisperPackage: {
/**
* The display name of this package.
*/
name: 'whisper';
/**
* The canonical domain name for this package.
*/
domain: 'openai.com/whisper';
/**
* Brief description of what this package does.
*/
description: 'Robust Speech Recognition via Large-Scale Weak Supervision';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openai.com/whisper/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install whisper';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['whisper'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org~3.11', 'ffmpeg.org^6.1', 'huggingface.co^0.19', 'pyyaml.org^0.2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['20240930.0.0', '20240927.0.0', '20231117.0.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type WhisperPackage = typeof whisperPackage