TroglodyteDerivations's picture
Update app.py
a180a64 verified
raw
history blame contribute delete
857 Bytes
import streamlit as st
from streamlit_player import st_player
# Set the title of the app
st.title("Agentic AI Trump Clone [Derivation]")
# Write the description
st.write("While a lot of attention has been given to generative AI (GenAI)—which excels in producing content like text, images, music and video—more attention should be paid to another emerging AI paradigm: agentic AI. Agentic AI aims to let AI algorithms make independent decisions, adapt to their environment and take action without direct human intervention. This represents a significant shift from earlier forms of AI, signaling both promises and challenges for the future.")
# Stream the local Agentic_AI_Trump_Final.mp4 file
st.header("Streaming Agentic_AI_Trump_Final.mp4")
video_file = open('Agentic_AI_Trump_Final.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)