TroglodyteDerivations
commited on
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)
Browse files
app.py
CHANGED
@@ -12,6 +12,11 @@ st.video(video_bytes)
|
|
12 |
|
13 |
# Write the descriptions of Agentic AI
|
14 |
st.header("About Agentic AI")
|
|
|
|
|
|
|
|
|
|
|
15 |
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.')
|
16 |
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.')
|
17 |
st.write("什麼是 Agentic AI?代理 AI 是指旨在自主執行特定任務的 AI 系統,通常具有一定程度的決策和適應性。這些系統充當「代理」,可以接收輸入、處理輸入併產生輸出,而無需持續的人工干預。它們通常涉及多個步驟、集成以及處理動態或複雜工作流的能力。")
|
|
|
12 |
|
13 |
# Write the descriptions of Agentic AI
|
14 |
st.header("About Agentic AI")
|
15 |
+
# Play the result.mp4 file
|
16 |
+
st.header("IA Agentica Result Video")
|
17 |
+
video_file = open('ia_agentica_result.mp4', 'rb')
|
18 |
+
video_bytes = video_file.read()
|
19 |
+
st.video(video_bytes)
|
20 |
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.')
|
21 |
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.')
|
22 |
st.write("什麼是 Agentic AI?代理 AI 是指旨在自主執行特定任務的 AI 系統,通常具有一定程度的決策和適應性。這些系統充當「代理」,可以接收輸入、處理輸入併產生輸出,而無需持續的人工干預。它們通常涉及多個步驟、集成以及處理動態或複雜工作流的能力。")
|