import streamlit as st from definitions import AutonomousAgentApp def main(): app = AutonomousAgentApp() app.run() if __name__ == "__main__": main()