Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -188,7 +188,7 @@ class AIEvaluationForm:
|
|
188 |
print(f"Arg {i}: {type(arg)} = {arg}")
|
189 |
|
190 |
# Extract system info (first 5 arguments)
|
191 |
-
name, provider, url, sys_type,
|
192 |
remaining_args = list(args[5:])
|
193 |
|
194 |
# Build metadata
|
@@ -197,7 +197,8 @@ class AIEvaluationForm:
|
|
197 |
"Provider": provider or "Unknown",
|
198 |
"URL": url or "",
|
199 |
"Type": sys_type or "Unknown",
|
200 |
-
"Modalities":
|
|
|
201 |
}
|
202 |
|
203 |
# Build scores
|
|
|
188 |
print(f"Arg {i}: {type(arg)} = {arg}")
|
189 |
|
190 |
# Extract system info (first 5 arguments)
|
191 |
+
name, provider, url, sys_type, inp_modalities, out_modalities = args[:6]
|
192 |
remaining_args = list(args[5:])
|
193 |
|
194 |
# Build metadata
|
|
|
197 |
"Provider": provider or "Unknown",
|
198 |
"URL": url or "",
|
199 |
"Type": sys_type or "Unknown",
|
200 |
+
"Input Modalities": inp_modalities or []
|
201 |
+
"Output Modalities": out_modalities or []
|
202 |
}
|
203 |
|
204 |
# Build scores
|