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.
 
 
 

56 lines
1.4 KiB

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using CommunityToolkit.Mvvm.ComponentModel;
using StabilityMatrix.Avalonia.Services;
using StabilityMatrix.Core.Inference;
using StabilityMatrix.Core.Models;
using StabilityMatrix.Core.Models.Api.Comfy;
namespace StabilityMatrix.Avalonia.DesignData;
public class MockInferenceClientManager : ObservableObject, IInferenceClientManager
{
public ComfyClient? Client { get; set; }
public IReadOnlyCollection<string>? ModelNames { get; set; }
public IReadOnlyCollection<ComfySampler>? Samplers { get; set; } = new ComfySampler[]
{
new("euler_ancestral"),
new("euler"),
new("lms"),
new("heun"),
new("dpm_2"),
new("dpm_2_ancestral")
};
public IReadOnlyCollection<ComfyUpscaler>? Upscalers { get; set; } = new ComfyUpscaler[]
{
new("nearest-exact", ComfyUpscalerType.Latent),
new("bicubic", ComfyUpscalerType.Latent),
new("ESRGAN-4x", ComfyUpscalerType.ESRGAN)
};
public bool IsConnected { get; set; }
public Task ConnectAsync()
{
return Task.CompletedTask;
}
/// <inheritdoc />
public Task ConnectAsync(PackagePair packagePair)
{
return Task.CompletedTask;
}
public Task CloseAsync()
{
return Task.CompletedTask;
}
public void Dispose()
{
GC.SuppressFinalize(this);
}
}