Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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()
|