File size: 232 Bytes
4670a90
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from typing import Any, Dict

from .embeddings import get_embeddings
from .llms import get_llm


def download(config: Dict[str, Any]) -> None:
    config = {**config, "download": True}
    get_embeddings(config)
    get_llm(config)