acecalisto3 commited on
Commit
11a5a51
·
verified ·
1 Parent(s): a2b9ede

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -1465,4 +1465,11 @@ class StreamlitInterface:
1465
  st.subheader("System Info")
1466
  st.write(f"Python Version: {sys.version}")
1467
  st.write(f"Platform: {platform.platform()}") # <-- Now works because `platform` is imported
1468
- st.write(f"Available Memory: {psutil.virtual_memory().available / (1024**3):.1f} GB free")
 
 
 
 
 
 
 
 
1465
  st.subheader("System Info")
1466
  st.write(f"Python Version: {sys.version}")
1467
  st.write(f"Platform: {platform.platform()}") # <-- Now works because `platform` is imported
1468
+ st.write(f"Available Memory: {psutil.virtual_memory().available / (1024**3):.1f} GB free")
1469
+
1470
+ def main():
1471
+ app = AutonomousAgentApp()
1472
+ app.run()
1473
+
1474
+ if __name__ == "__main__":
1475
+ main()