#!/usr/bin/env python3 """ Main entry point for the Agentic Browser application. """ import os import sys # Add the current directory to the Python path current_dir = os.path.dirname(os.path.abspath(__file__)) if current_dir not in sys.path: sys.path.insert(0, current_dir) # Add the src directory to the Python path src_dir = os.path.join(current_dir, 'src') if src_dir not in sys.path: sys.path.insert(0, src_dir) # Import and run the Streamlit app from src.streamlit_app import main if __name__ == "__main__": main()