Compare commits

...
Author SHA1 Message Date
Xuan Son Nguyen 7f5903206c correct to 9931 2026-08-03 12:18:50 +02:00
Xuan Son Nguyen 41a95911b7 add link to PR 2026-08-03 12:14:24 +02:00
Xuan Son Nguyen f25ff5fffe server: add notice for upcoming default port change 8080 --> 6631 2026-08-03 12:10:14 +02:00
+7
View File
@@ -486,6 +486,13 @@ int llama_server(common_params & params, int argc, char ** argv) {
SRV_INF("listening on %s\n", ctx_http.listening_address.c_str());
// TODO: remove this in the future
// check the string to also handle the .sock case
if (string_ends_with(ctx_http.listening_address, ":8080")) {
SRV_WRN("%s", "NOTICE: server default port will be changed to :9931 in a future release\n");
SRV_WRN("%s", " ref: https://github.com/ggml-org/llama.cpp/pull/26508\n");
}
if (is_router_server) {
if (!params.models_preset_hf.empty()) {
SRV_WRN( "NOTE: using preset.ini from HF repo '%s'\n", params.models_preset_hf.c_str());