We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6f8328 commit f18b627Copy full SHA for f18b627
tools/server/server-diffusion.cpp
@@ -4063,7 +4063,6 @@ struct server_context {
4063
(int32_t)prompt_text_tokens.size(),
4064
&slot,
4065
this,
4066
- "",
4067
last_tokens_buffer.data()
4068
};
4069
diff_params.step_callback = diffusion_step_callback;
@@ -5641,7 +5640,7 @@ int main(int argc, char ** argv) {
5641
5640
files);
5642
5643
// Check if this is a diffusion request by looking for diffusion-specific parameters
5644
- bool is_diffusion = llama_model_is_diffusion(ctx_server.model)
+ bool is_diffusion = llama_model_is_diffusion(ctx_server.model);
5645
5646
server_task_type task_type = is_diffusion ? SERVER_TASK_TYPE_DIFFUSION : SERVER_TASK_TYPE_COMPLETION;
5647
0 commit comments