@@ -252,11 +252,14 @@ CurlResponse RemoteEngine::MakeGetModelsRequest(
252
252
return response;
253
253
}
254
254
255
- std::string api_key_header =
256
- ReplaceApiKeyPlaceholder (header_template, api_key);
255
+ std::unordered_map<std::string, std::string> replacements = {
256
+ {" api_key" , api_key}};
257
+ auto hs = ReplaceHeaderPlaceholders (header_template, replacements);
257
258
258
259
struct curl_slist * headers = nullptr ;
259
- headers = curl_slist_append (headers, api_key_header.c_str ());
260
+ for (auto const & h : hs) {
261
+ headers = curl_slist_append (headers, h.c_str ());
262
+ }
260
263
headers = curl_slist_append (headers, " Content-Type: application/json" );
261
264
262
265
curl_easy_setopt (curl, CURLOPT_URL, url.c_str ());
@@ -699,25 +702,7 @@ Json::Value RemoteEngine::GetRemoteModels(const std::string& url,
699
702
const std::string& api_key,
700
703
const std::string& header_template) {
701
704
if (url.empty ()) {
702
- if (engine_name_ == kAnthropicEngine ) {
703
- Json::Value json_resp;
704
- Json::Value model_array (Json::arrayValue);
705
- for (const auto & m : kAnthropicModels ) {
706
- Json::Value val;
707
- val[" id" ] = std::string (m);
708
- val[" engine" ] = " anthropic" ;
709
- val[" created" ] = " _" ;
710
- val[" object" ] = " model" ;
711
- model_array.append (val);
712
- }
713
-
714
- json_resp[" object" ] = " list" ;
715
- json_resp[" data" ] = model_array;
716
- CTL_INF (" Remote models responded" );
717
- return json_resp;
718
- } else {
719
- return Json::Value ();
720
- }
705
+ return Json::Value ();
721
706
} else {
722
707
auto response = MakeGetModelsRequest (url, api_key, header_template);
723
708
if (response.error ) {
@@ -728,9 +713,23 @@ Json::Value RemoteEngine::GetRemoteModels(const std::string& url,
728
713
}
729
714
CTL_DBG (response.body );
730
715
auto body_json = json_helper::ParseJsonString (response.body );
731
- if (body_json.isMember (" error" )) {
716
+ if (body_json.isMember (" error" ) && !body_json[ " error " ]. isNull () ) {
732
717
return body_json[" error" ];
733
718
}
719
+
720
+ // hardcode for cohere
721
+ if (url.find (" api.cohere.ai" ) != std::string::npos) {
722
+ if (body_json.isMember (" models" )) {
723
+ for (auto & model : body_json[" models" ]) {
724
+ if (model.isMember (" name" )) {
725
+ model[" id" ] = model[" name" ];
726
+ model.removeMember (" name" );
727
+ }
728
+ }
729
+ body_json[" data" ] = body_json[" models" ];
730
+ body_json.removeMember (" models" );
731
+ }
732
+ }
734
733
return body_json;
735
734
}
736
735
}
0 commit comments