Spaces:
Paused
Paused
Commit
ยท
54cd51f
1
Parent(s):
7700f35
Auto-commit: app.py updated
Browse files
app.py
CHANGED
|
@@ -18,10 +18,10 @@ def main():
|
|
| 18 |
try:
|
| 19 |
print("๐ Starting OpenManus Platform...")
|
| 20 |
|
| 21 |
-
# Try to import and run the
|
| 22 |
-
from
|
| 23 |
|
| 24 |
-
|
| 25 |
|
| 26 |
except ImportError as e:
|
| 27 |
print(f"โ ๏ธ Import error: {e}")
|
|
|
|
| 18 |
try:
|
| 19 |
print("๐ Starting OpenManus Platform...")
|
| 20 |
|
| 21 |
+
# Try to import and run the minimal app
|
| 22 |
+
from app_minimal import main as minimal_main
|
| 23 |
|
| 24 |
+
minimal_main()
|
| 25 |
|
| 26 |
except ImportError as e:
|
| 27 |
print(f"โ ๏ธ Import error: {e}")
|