EduConnect / docs /utils /download_model_class.puml
dtyago's picture
Plant UML docs
a30f2aa
raw
history blame contribute delete
353 Bytes
@startuml download_model
class ModelDownloader {
-model_file_path : string
-model_name : string
-model_dir : string
+model_file_exists_and_valid(model_file_path : string) : boolean
+write_model_path_to_txt_file(model_file_path : string) : void
+download_hf_model() : void
+download_gguf_model() : void
+download_model() : void
}
@enduml