|
import google.generativeai as genai |
|
import os |
|
|
|
|
|
import os |
|
import google.generativeai as genai |
|
|
|
os.environ["GOOGLE_API_KEY"] = "AIzaSyD0GxR2J1JxGic807Cc89Jq6MB4aDJYgDc" |
|
genai.configure() |
|
|
|
|
|
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 |