Release v1.0.1
·
0 commits
to 0a1b5813144c9c61c7f86a435ddb9b81a318f880
since this release
π Release v1.0.1
Published: @simonorzel26/ai-models@v1.0.1
π Stats
- Total Models: Updated with latest AI SDK providers
- Providers: 28+ supported providers
- Categories: Chat, Embedding, Image, Speech, Transcription, etc.
π Changes
- Updated model types from latest Vercel AI SDK providers
- Improved TypeScript type definitions and utility functions
π¦ Installation
npm install @simonorzel26/ai-models
# or
bun add @simonorzel26/ai-models
# or
yarn add @simonorzel26/ai-modelsπ οΈ Usage
import { getModelsByProvider, ALL_MODELS } from '@simonorzel26/ai-models';
// Get all OpenAI models
const openaiModels = getModelsByProvider('openai');
// Get all chat models
const chatModels = getModelsByCategory('chat');
// Access all models
console.log(\`Total models: \${ALL_MODELS.length}\`);