server: add "verbose" field to schema (#24864)

This commit is contained in:
Xuan-Son Nguyen
2026-06-21 13:03:14 +02:00
committed by GitHub
parent d6d899580d
commit bfa3219177
2 changed files with 23 additions and 0 deletions
+3
View File
@@ -14,6 +14,9 @@ std::vector<std::unique_ptr<field>> make_llama_cmpl_schema(const common_params &
fields.emplace_back(f);
};
add((new field_bool("verbose", params.verbose))
->set_desc("Include __verbose field in the response with additional debug information"));
add((new field_bool("timings_per_token", params.timings_per_token))
->set_desc("Include prompt processing and text generation speed information in each response"));