File size: 162 Bytes
d681a00
465ccfc
ee8a7f5
11a5a51
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st
from definitions import AutonomousAgentApp

def main():
    app = AutonomousAgentApp()
    app.run()

if __name__ == "__main__":
    main()