Spaces:
Running
Running
from typing import Literal, get_args | |
DataIndices = Literal[ | |
"issuelab", | |
"youtube", | |
"candid_blog", | |
"candid_learning", | |
"candid_help", | |
"news" | |
] | |
ALL_INDICES = get_args(DataIndices) | |