Update notebooks

This commit is contained in:
f-trycua
2025-04-06 11:28:28 -07:00
parent 36fccfde87
commit 388f474068
8 changed files with 73 additions and 1127 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env python3
"""
Simple example script for the Computer-Use Agent Gradio UI.
This script launches the advanced Gradio UI for the Computer-Use Agent
with full model selection and configuration options.
It can be run directly from the command line.
"""
from utils import load_dotenv_files
load_dotenv_files()
# Import the create_gradio_ui function
from agent.ui.gradio.app import create_gradio_ui
if __name__ == "__main__":
print("Launching Computer-Use Agent Gradio UI with advanced features...")
app = create_gradio_ui()
app.launch(share=False)