Free quota looks reasonable with 60 queries per minute. On the other hand data from free quota requests will be used to improve the product. https://ai.google.dev/pricing
Google Gemini Pro API Available Through AI Studio
91–100 of 118 posts
Re: Google Gemini Pro API Available Through AI Studio
#92Re: Google Gemini Pro API Available Through AI Studio
#93why on earth did they design the Node.js and Web APIs to be slightly different and incompatible? (edit: this might just be a bug/oversight on the landing page?) Node.js: const model = genAI.getGenerativeModel({ model: "gemini-pro-vision"}); const result = model.generateContent({ contents: [{parts: [ {text: "What’s in this photo?"}, {inlineData: {data: imgBase64, mimeType: 'image/png'}} ] }] }) Web: const model = genA…
Re: Google Gemini Pro API Available Through AI Studio
#94Free quota looks reasonable with 60 queries per minute. On the other hand data from free quota requests will be used to improve the product. https://ai.google.dev/pricing
This must be a significant investment to pick up the hype; 1 qps cannot be sustainable with a free pricing tier unless their resource efficiency is 10x better than competitors.
For users that get close to that sustained rate, they’re just as likely to exceed it and actually pay.
Re: Google Gemini Pro API Available Through AI Studio
#95why on earth did they design the Node.js and Web APIs to be slightly different and incompatible? (edit: this might just be a bug/oversight on the landing page?) Node.js: const model = genAI.getGenerativeModel({ model: "gemini-pro-vision"}); const result = model.generateContent({ contents: [{parts: [ {text: "What’s in this photo?"}, {inlineData: {data: imgBase64, mimeType: 'image/png'}} ] }] }) Web: const model = genA…
Hey! This is Miguel from Google working of these SDKS. I'm confused about this comment, Both Web and Node.js are the same. Can you clarify where you see the difference?
updated my comment to paste in what's written in the docs
Re: Google Gemini Pro API Available Through AI Studio
#96Earlier quoted context omitted.
Okay, from my end, I am still seeing Palm (EU).
Same here, Google's offering is very weird though, a simple question to Bard about what it's using also outputs the wrong result. https://imgur.com/Vb1STQe
Re: Google Gemini Pro API Available Through AI Studio
#97Earlier quoted context omitted.
Hey! This is Miguel from Google working of these SDKS. I'm confused about this comment, Both Web and Node.js are the same. Can you clarify where you see the difference?
as documented it looks different (async vs sync + the necessity of `text:` annotations in the Node.js version?) updated my comment to paste in what's written in the docs
The web and Node.js are the same, each of them has many function overloads so users can call functions with simplified or complex arguments, as they prefer. We are going to fix the doc and code snippets so both Web and Node.js consistently show the same code to avoid misunderstandings. Thanks a lot!
Re: Google Gemini Pro API Available Through AI Studio
#98[flagged]
Is there a reason for this? Any advantages, disadvantages, etc.?
Re: Google Gemini Pro API Available Through AI Studio
#99I used this just-released API (of Gemini Pro) with multimodal input to test some of the things from the infamous Gemini Demo. You can see here [ https://www.youtube.com/watch?v=__nL7Vc0OCg ] my GPT-4 recreation of that ad which went viral. Gemini Pro is... not great. In one test, I asked what gesture I was making (while showing a thumbs up) -- it said thumbs down and "The image is a commentary on the changing nature…