Spaces:
Runtime error
Runtime error
Upload with huggingface_hub
Browse files- app.py +5 -0
- requirements.txt +3 -0
app.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json, sys
|
2 |
+
from eliottree import tasks_from_iterable, render_tasks
|
3 |
+
render_tasks(sys.stderr.write,
|
4 |
+
tasks_from_iterable([json.loads(l) for l in open("bash.log")]),
|
5 |
+
colorize=True, human_readable=True)
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
git+https://github.com/srush/minichain
|
3 |
+
manifest-ml
|