|
import streamlit as st |
|
from streamlit_player import st_player |
|
|
|
|
|
st.title("Agentic AI Trump Clone [Derivation]") |
|
|
|
|
|
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.") |
|
|
|
|
|
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) |