This commit is contained in:
wuyanchen 2025-12-22 16:47:15 +08:00
parent 9b9d696d25
commit f355e5be89

View File

@ -48,6 +48,7 @@ namespace XPrintServer.Api.Controllers.Ai
[HttpPost]
public async Task<string> GenerationImage([FromBody] PromptRequestInfo requestInfo)
{
return string.Empty;
string promptId = await _compyUIService.QwenWorkflow.GenerateImageAsync(requestInfo.Prompt, "", long.Parse(requestInfo.Seed), requestInfo.Width, requestInfo.Height);
return promptId;
}