Spaces:
Runtime error
Runtime error
FIX: typing
Browse files
app.py
CHANGED
|
@@ -67,7 +67,7 @@ def get_evaluation_data_from_json(_context: List) -> List[Tuple[List, str, str]]
|
|
| 67 |
return output_data
|
| 68 |
|
| 69 |
|
| 70 |
-
def get_evaluation_data_from_dialogue(_context: List) -> List[Tuple[List, str, Union[str
|
| 71 |
output_data = []
|
| 72 |
for idx, _line in enumerate(_context):
|
| 73 |
if idx == 0:
|
|
|
|
| 67 |
return output_data
|
| 68 |
|
| 69 |
|
| 70 |
+
def get_evaluation_data_from_dialogue(_context: List) -> List[Tuple[List, str, Union[str, None]]]:
|
| 71 |
output_data = []
|
| 72 |
for idx, _line in enumerate(_context):
|
| 73 |
if idx == 0:
|