@@ -67,7 +67,8 @@ void ParseGguf(DatabaseService& db_service,
67
67
CTL_INF (" Adding model to modellist with branch: " << branch);
68
68
69
69
auto rel = file_manager_utils::ToRelativeCortexDataPath (yaml_name);
70
- CTL_INF (" path_to_model_yaml: " << rel.string ());
70
+ CTL_INF (" path_to_model_yaml: " << rel.string ()
71
+ << " , model: " << ggufDownloadItem.id );
71
72
72
73
auto author_id = author.has_value () ? author.value () : " cortexso" ;
73
74
if (!db_service.HasModel (ggufDownloadItem.id )) {
@@ -86,6 +87,7 @@ void ParseGguf(DatabaseService& db_service,
86
87
} else {
87
88
if (auto m = db_service.GetModelInfo (ggufDownloadItem.id ); m.has_value ()) {
88
89
auto upd_m = m.value ();
90
+ upd_m.path_to_model_yaml = rel.string ();
89
91
upd_m.status = cortex::db::ModelStatus::Downloaded;
90
92
if (auto r = db_service.UpdateModelEntry (ggufDownloadItem.id , upd_m);
91
93
r.has_error ()) {
@@ -161,6 +163,9 @@ void ModelService::ForceIndexingModelList() {
161
163
continue ;
162
164
}
163
165
try {
166
+ CTL_DBG (fmu::ToAbsoluteCortexDataPath (
167
+ fs::path (model_entry.path_to_model_yaml ))
168
+ .string ());
164
169
yaml_handler.ModelConfigFromFile (
165
170
fmu::ToAbsoluteCortexDataPath (
166
171
fs::path (model_entry.path_to_model_yaml ))
@@ -171,48 +176,12 @@ void ModelService::ForceIndexingModelList() {
171
176
} catch (const std::exception & e) {
172
177
// remove in db
173
178
auto remove_result = db_service_->DeleteModelEntry (model_entry.model );
179
+ CTL_DBG (e.what ());
174
180
// silently ignore result
175
181
}
176
182
}
177
183
}
178
184
179
- cpp::result<std::string, std::string> ModelService::DownloadModel (
180
- const std::string& input) {
181
- if (input.empty ()) {
182
- return cpp::fail (
183
- " Input must be Cortex Model Hub handle or HuggingFace url!" );
184
- }
185
-
186
- if (string_utils::StartsWith (input, " https://" )) {
187
- return HandleUrl (input);
188
- }
189
-
190
- if (input.find (" :" ) != std::string::npos) {
191
- auto parsed = string_utils::SplitBy (input, " :" );
192
- if (parsed.size () != 2 ) {
193
- return cpp::fail (" Invalid model handle: " + input);
194
- }
195
- return DownloadModelFromCortexso (parsed[0 ], parsed[1 ]);
196
- }
197
-
198
- if (input.find (" /" ) != std::string::npos) {
199
- auto parsed = string_utils::SplitBy (input, " /" );
200
- if (parsed.size () != 2 ) {
201
- return cpp::fail (" Invalid model handle: " + input);
202
- }
203
-
204
- auto author = parsed[0 ];
205
- auto model_name = parsed[1 ];
206
- if (author == " cortexso" ) {
207
- return HandleCortexsoModel (model_name);
208
- }
209
-
210
- return DownloadHuggingFaceGgufModel (author, model_name, std::nullopt);
211
- }
212
-
213
- return HandleCortexsoModel (input);
214
- }
215
-
216
185
cpp::result<std::string, std::string> ModelService::HandleCortexsoModel (
217
186
const std::string& modelName) {
218
187
auto branches =
@@ -612,7 +581,8 @@ ModelService::DownloadModelFromCortexsoAsync(
612
581
.branch_name = branch,
613
582
.path_to_model_yaml = rel.string (),
614
583
.model_alias = unique_model_id,
615
- .status = cortex::db::ModelStatus::Downloaded};
584
+ .status = cortex::db::ModelStatus::Downloaded,
585
+ .engine = mc.engine };
616
586
auto result = db_service_->AddModelEntry (model_entry);
617
587
618
588
if (result.has_error ()) {
@@ -621,6 +591,7 @@ ModelService::DownloadModelFromCortexsoAsync(
621
591
} else {
622
592
if (auto m = db_service_->GetModelInfo (unique_model_id); m.has_value ()) {
623
593
auto upd_m = m.value ();
594
+ upd_m.path_to_model_yaml = rel.string ();
624
595
upd_m.status = cortex::db::ModelStatus::Downloaded;
625
596
if (auto r = db_service_->UpdateModelEntry (unique_model_id, upd_m);
626
597
r.has_error ()) {
@@ -1157,7 +1128,7 @@ cpp::result<ModelPullInfo, std::string> ModelService::GetModelPullInfo(
1157
1128
1158
1129
if (input.find (" :" ) != std::string::npos) {
1159
1130
auto parsed = string_utils::SplitBy (input, " :" );
1160
- if (parsed.size () != 2 ) {
1131
+ if (parsed.size () != 2 && parsed. size () != 3 ) {
1161
1132
return cpp::fail (" Invalid model handle: " + input);
1162
1133
}
1163
1134
return ModelPullInfo{.id = input,
0 commit comments