Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Nov 25, 2024
1 parent dcb0490 commit 97466c8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions AiServer.ServiceInterface/GenerationServices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ public async Task<object> Any(ImageToImage request)
NegativePrompt = request.NegativePrompt,
Denoise = request.Denoise,
BatchSize = request.BatchSize,
ImageInput = request.Image
}
};

Expand All @@ -123,7 +122,6 @@ public async Task<object> Any(ImageUpscale request)
Model = "image-upscale-2x",
Seed = request.Seed,
TaskType = AiTaskType.ImageUpscale,
ImageInput = request.Image
}
};

Expand All @@ -144,8 +142,6 @@ public async Task<object> Any(ImageWithMask request)
PositivePrompt = request.PositivePrompt,
NegativePrompt = request.NegativePrompt,
Denoise = request.Denoise,
ImageInput = request.Image,
MaskInput = request.Mask
}
};

Expand All @@ -162,7 +158,6 @@ public async Task<object> Any(ImageToText request)
{
Model = "image-to-text",
TaskType = AiTaskType.ImageToText,
ImageInput = request.Image
}
};

Expand Down

0 comments on commit 97466c8

Please sign in to comment.