Spaces:
Running
Running
File size: 1,030 Bytes
d0f716d 78f883e d0f716d f612514 d0f716d f612514 d0f716d f612514 d0f716d f612514 d0f716d f612514 d0f716d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
"""
File: practical_tasks.py
Author: Elena Ryumina and Dmitry Ryumin
Description: Utility functions for working with practical tasks data.
License: MIT License
"""
import yaml
from typing import Dict, List
# Importing necessary components for the Gradio app
def load_practical_tasks_data(file_paths: List[str]) -> List[Dict]:
all_tasks_data = []
for file_path in file_paths:
with open(file_path, "r") as file:
data = yaml.safe_load(file) or []
all_tasks_data.append(data)
return all_tasks_data
def transform_practical_tasks_data(data: List[Dict]) -> List[Dict]:
output_list = []
for task_data in data:
output_dict = {item["task"]: item["subtasks"] for item in task_data}
output_list.append(output_dict)
return output_list
yaml_file_paths = ["./practical_tasks_en.yaml", "./practical_tasks_ru.yaml"]
practical_tasks_data = load_practical_tasks_data(yaml_file_paths)
supported_practical_tasks = transform_practical_tasks_data(practical_tasks_data)
|