Skip to content

Release v1.1.0

Choose a tag to compare

@github-actions github-actions released this 06 Jul 23:34
· 0 commits to 05a0f7621846363d9ea7013968e5f62dddf72f2f since this release

πŸš€ Release v1.1.0

Published: @simonorzel26/ai-models@v1.1.0

πŸ“Š Stats

  • Total Models: Updated with latest AI SDK providers
  • Providers: 28+ supported providers
  • Categories: Chat, Embedding, Image, Speech, Transcription, etc.

πŸ”„ Changes

What's New:

  • Updated model types from latest Vercel AI SDK providers
  • Improved TypeScript type definitions and utility functions

Versioning:

  • πŸ”΄ Major: Breaking changes from @ai-sdk dependency updates
  • 🟑 Minor: New models, features, or improvements (default)
  • 🟒 Patch: Bug fixes only

πŸ“¦ 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}\`);