File size: 784 Bytes
5cff4fd c7ba6ae 5cff4fd c7ba6ae 5cff4fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import google.generativeai as genai
import os
# Configure the Gemini API
import os
import google.generativeai as genai
os.environ["GOOGLE_API_KEY"] = "AIzaSyD0GxR2J1JxGic807Cc89Jq6MB4aDJYgDc"
genai.configure()
# Initialize the Gemini Pro model for text-based tasks
model = genai.GenerativeModel('gemini-1.5-flash')
def get_answer(question, video_data):
prompt = f"""
Based on the following video information, please answer the question.
Video Summary: {video_data['summary']}
Extracted Text: {video_data['extracted_text']}
Transcription: {video_data['transcription']}
Extracted Code: {video_data['extracted_code']}
Question: {question}
Answer:
"""
response = model.generate_content(prompt)
return response.text |