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
Users want to know why their selection is incorrect or why another answer is better
It may not be easy to find clear answers addressing the question directly on search
Provide the question, answer, and wrong/correct answer as prompt into Gemini 1.5
import google.generativeai as genai
genai.configure(api_key="YOUR_API_KEY")
model = genai.GenerativeModel("gemini-1.5-flash")
response = model.generate_content("
Explain why the correct answer and wrong answer to the following question
Which GCP Service provides distributed SQL storage and database?
WRONG: Cloud SQL
CORRECT: Cloud Spanner
")
print(response.text)
Copy pasting the question and answer into Gemini
Gemini Flash 1.5 is free and it has at least a decent knowledge of GCP, if we can bring Gemini to users that would be great, perhaps in future we could use Google SSO and let users pay for more expensive accurate models.
The text was updated successfully, but these errors were encountered:
Users want to know why their selection is incorrect or why another answer is better
It may not be easy to find clear answers addressing the question directly on search
Provide the question, answer, and wrong/correct answer as prompt into Gemini 1.5
Copy pasting the question and answer into Gemini
Gemini Flash 1.5 is free and it has at least a decent knowledge of GCP, if we can bring Gemini to users that would be great, perhaps in future we could use Google SSO and let users pay for more expensive accurate models.
The text was updated successfully, but these errors were encountered: