vercel / ai-chatbot

A full-featured, hackable Next.js AI chatbot built by Vercel
https://chat.vercel.ai
Other
6.23k stars 1.96k forks source link

All non OpenAI providers giving errors like Type 'GoogleGenerativeAILanguageModel' is not assignable to type 'LanguageModelV1'. #367

Open retired-Hurt opened 3 months ago

retired-Hurt commented 3 months ago

All non-OpenAI providers are giving error like Type 'GoogleGenerativeAILanguageModel' is not assignable to type 'LanguageModelV1'...Steps to reproduce

  1. Clone the repo to local
  2. On lib --> chat --> actions.tsx write following code

import { google } from '@ai-sdk/google';

  1. Replace the code model: openai('gpt-3.5-turbo'), with the code google('models/gemini-pro'), and it shows the above compilation error on vscode.

I have tried this with other providers like mistral, anthropic and all of them give the same error. However the groq provider doesn't give the same error as it uses the OpenAI provider.

Is there an underlying problem with the SDK or is there something I am missing here?

paulbremer commented 3 months ago

I came across the same issue and the problem was that there was a mismatch between the ai package and @ai-sdk/openai in my case. Updating both to the latest versions solved the issue, might help you too.

pringshia commented 3 months ago

I had the same issue and upgrading my ai package with npm update ai --save fixed it. I had cloned a Vercel template where the package{-lock}.json specified an older version "ai": "^3.0.17".