File size: 928 Bytes
9637944
 
c18a794
9637944
c18a794
9637944
 
c18a794
9637944
 
 
 
 
 
 
 
 
 
 
c18a794
9637944
 
 
 
 
 
 
 
 
c18a794
9637944
 
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
from .artifact import Artifact, UnitxtArtifactNotFoundError, fetch_artifact
from .logging_utils import get_logger
from .parsing_utils import parse_key_equals_value_string_to_dict
from .register import _reset_env_local_catalogs, register_all_artifacts
from .settings_utils import get_settings

logger = get_logger()
settings = get_settings()


def fetch(artifact_name):
    try:
        artifact, _ = fetch_artifact(artifact_name)
        return artifact
    except UnitxtArtifactNotFoundError:
        return None


def parse(query: str):
    return parse_key_equals_value_string_to_dict(query)


def get_dataset_artifact(dataset_str):
    _reset_env_local_catalogs()
    register_all_artifacts()
    recipe = fetch(dataset_str)
    if recipe is None:
        args = parse(dataset_str)
        if "type" not in args:
            args["type"] = settings.default_recipe
        recipe = Artifact.from_dict(args)
    return recipe