Spaces:
Build error
Build error
freemt
commited on
Commit
·
cbf404e
1
Parent(s):
a8669fc
Debug
Browse files- README.md +1 -0
- ubee/__main__.py +2 -2
README.md
CHANGED
|
@@ -4,6 +4,7 @@ emoji: 🏢
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: indigo
|
| 6 |
sdk: gradio
|
|
|
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
| 9 |
license: mit
|
|
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: indigo
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 3.0.2
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
license: mit
|
ubee/__main__.py
CHANGED
|
@@ -31,11 +31,11 @@ ic.enable()
|
|
| 31 |
# ic.disenable() # to turn off
|
| 32 |
|
| 33 |
ic("Testing...")
|
| 34 |
-
from model_pool import __version__,
|
| 35 |
print("model-pool version", __version__)
|
| 36 |
|
| 37 |
try:
|
| 38 |
-
|
| 39 |
except Exception as _:
|
| 40 |
ic(_)
|
| 41 |
|
|
|
|
| 31 |
# ic.disenable() # to turn off
|
| 32 |
|
| 33 |
ic("Testing...")
|
| 34 |
+
from model_pool import __version__, fetch_check_aux
|
| 35 |
print("model-pool version", __version__)
|
| 36 |
|
| 37 |
try:
|
| 38 |
+
fetch_check_aux()
|
| 39 |
except Exception as _:
|
| 40 |
ic(_)
|
| 41 |
|