sutdaiday
commited on
Commit
Β·
4c85f84
1
Parent(s):
3b9ddbc
fixed
Browse files- app.py +5 -0
- requirements.txt +1 -1
app.py
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
import pandas as pd
|
3 |
import random, os, csv
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
# βββ Configuration βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
6 |
DATASET_FILES = {
|
|
|
1 |
import gradio as gr
|
2 |
import pandas as pd
|
3 |
import random, os, csv
|
4 |
+
import sys
|
5 |
+
|
6 |
+
print(">>> Gradio imported from:", gr.__file__)
|
7 |
+
print(">>> Gradio version :", getattr(gr, "__version__", "n/a"))
|
8 |
+
print(">>> sys.path contains :", sys.path[:5])
|
9 |
|
10 |
# βββ Configuration βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
11 |
DATASET_FILES = {
|
requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
gradio>=
|
2 |
pandas
|
|
|
1 |
+
gradio>=5.29.0
|
2 |
pandas
|