chatdocsCC / chatdocs /download.py
Amos Blanton
Maybe
4670a90
raw
history blame
232 Bytes
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)