You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the feature you'd like
Google just released a public review of their new model, Gemini 1.5 Pro. It can handle up to 1 million token input capacity. It would really very sweet to test it out before a paid version goes live, on May 2 (I think).
Additional context
Also, they released a new embedding model text-embedding-004
I would guess the proper code is something like this
// ... existing code ...
async listModels(): Promise<INodeOptionsValue[]> {
const models = await getModels(MODEL_TYPE.EMBEDDING, 'googleGenerativeAiEmbeddings')
// Add the new model name to the list
models.push({ label: 'Gemini 1.5', name: 'gemini-1.5' })
return models
}
Describe the feature you'd like
Google just released a public review of their new model,
Gemini 1.5 Pro
. It can handle up to 1 million token input capacity. It would really very sweet to test it out before a paid version goes live, on May 2 (I think).Additional context
Also, they released a new embedding model
text-embedding-004
Source: https://developers.googleblog.com/2024/04/gemini-15-pro-in-public-preview-with-new-features.html
The text was updated successfully, but these errors were encountered: