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
The current example produces a base 64 response instead of the actual recipe of the item.
Actual vs expected behavior:
Any other information you'd like to share?
This code works correctly
import google.generativeai as genai
from PIL import Image
genai.configure(api_key="[API_KEY")
model = genai.GenerativeModel('gemini-pro-vision')
cookie_picture = Image.open('image.png')
prompt = "Give me a recipe for this:"
response = model.generate_content(
contents=[prompt, cookie_picture]
)
print(response.text)