Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
890 B

using Refit;
using StabilityMatrix.Core.Models.Api.Comfy;
namespace StabilityMatrix.Core.Api;
[Headers("User-Agent: StabilityMatrix")]
public interface IComfyApi
{
[Post("/prompt")]
Task<ComfyPromptResponse> PostPrompt(
[Body] ComfyPromptRequest prompt,
CancellationToken cancellationToken = default
);
[Get("/history/{promptId}")]
Task<Dictionary<string, ComfyHistoryResponse>> GetHistory(
string promptId,
CancellationToken cancellationToken = default
);
[Get("/object_info/{nodeType}")]
Task<Dictionary<string, ComfyObjectInfo>> GetObjectInfo(
string nodeType,
CancellationToken cancellationToken = default
);
[Get("/view")]
Task<Stream> GetImage(
string filename,
string subfolder,
string type,
CancellationToken cancellationToken = default
);
}