diff --git a/examples/Analyze_a_Video_Classification.ipynb b/examples/Analyze_a_Video_Classification.ipynb index 1487c887b..70d3e34da 100644 --- a/examples/Analyze_a_Video_Classification.ipynb +++ b/examples/Analyze_a_Video_Classification.ipynb @@ -282,7 +282,7 @@ ], "source": [ "model = genai.GenerativeModel(model_name=\"models/gemini-1.5-flash\", system_instruction=system_prompt)\n", - "response = model.generate_content([video_file])\n", + "response = model.generate_content([\"Please identify the animal(s) in this video\",video_file])\n", "print(response.text)" ] }, @@ -292,7 +292,9 @@ "id": "CYLXPx2lq45r" }, "source": [ - "As you can see, the model accurately named the animal and provided a correct Latin name. You can delete the video to prevent unnecessary data storage." + "As you can see, the model accurately named the animal and provided a correct Latin name. \n", + "\n", + "You can delete the video to prevent unnecessary data storage." ] }, {