TroglodyteDerivations's picture
Updated lines 15-19 with: # Play the result.mp4 file st.header("IA Agentica Result Video") video_file = open('ia_agentica_result.mp4', 'rb') video_bytes = video_file.read() st.video(video_bytes)
9380e94 verified
raw
history blame
2 kB
import streamlit as st
from streamlit_player import st_player
# Set the title of the app
st.title("Laura Osma Agentic AI Test")
# Play the result.mp4 file
st.header("Result Video")
video_file = open('result.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)
# Write the descriptions of Agentic AI
st.header("About Agentic AI")
# Play the result.mp4 file
st.header("IA Agentica Result Video")
video_file = open('ia_agentica_result.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)
st.write('¿Qué es Agentic AI? La IA agentica se refiere a los sistemas de IA que están diseñados para realizar tareas específicas de forma autónoma, a menudo con cierto grado de toma de decisiones y adaptabilidad. Estos sistemas actúan como "agentes" que pueden tomar entradas, procesarlas y producir salidas sin intervención humana constante. A menudo implican varios pasos, integraciones y la capacidad de manejar flujos de trabajo dinámicos o complejos.')
st.write('What is Agentic AI? Agentic AI refers to AI systems that are designed to perform specific tasks autonomously, often with a degree of decision-making and adaptability. These systems act as "agents" that can take inputs, process them, and produce outputs without constant human intervention. They often involve multiple steps, integrations, and the ability to handle dynamic or complex workflows.')
st.write("什麼是 Agentic AI?代理 AI 是指旨在自主執行特定任務的 AI 系統,通常具有一定程度的決策和適應性。這些系統充當「代理」,可以接收輸入、處理輸入併產生輸出,而無需持續的人工干預。它們通常涉及多個步驟、集成以及處理動態或複雜工作流的能力。")
# Embed YouTube trailers
st.header("Laura Osma Trailers")
st.write("Blocco 181 Series Trailer")
st_player("https://youtu.be/OS7jVOFD0FE?si=frAcqV5gUvGvoeqq")
st.write("Pimpinero Blood and Oil Trailer")
st_player("https://youtu.be/xn5GNXu8TbA?si=9Lp2W-kKXhUxF2Ju")