import streamlit as st from streamlit_player import st_player st.title("Pokemon Multimodal Agentic AI Interactions") video_file = open('response_output_0.mp4', 'rb') video_bytes = video_file.read() st.video(video_bytes) video_file = open('response_output_1.mp4', 'rb') video_bytes = video_file.read() st.video(video_bytes) video_file = open('response_output_2.mp4', 'rb') video_bytes = video_file.read() st.video(video_bytes)