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.
78 lines
2.0 KiB
78 lines
2.0 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Diagnostics.CodeAnalysis; |
|
using System.Threading.Tasks; |
|
using CommunityToolkit.Mvvm.ComponentModel; |
|
using StabilityMatrix.Core.Api; |
|
using StabilityMatrix.Core.Inference; |
|
|
|
namespace StabilityMatrix.Avalonia.Services; |
|
|
|
/// <summary> |
|
/// Manager for the current inference client |
|
/// Has observable shared properties for shared info like model names |
|
/// </summary> |
|
public partial class InferenceClientManager : ObservableObject, IInferenceClientManager |
|
{ |
|
private readonly IApiFactory apiFactory; |
|
|
|
[ObservableProperty, NotifyPropertyChangedFor(nameof(IsConnected))] |
|
private ComfyClient? client; |
|
|
|
[MemberNotNullWhen(true, nameof(Client))] |
|
public bool IsConnected => Client is not null; |
|
|
|
[ObservableProperty] |
|
private List<string>? modelNames; |
|
|
|
[ObservableProperty] |
|
private List<string>? samplers; |
|
|
|
public InferenceClientManager(IApiFactory apiFactory) |
|
{ |
|
this.apiFactory = apiFactory; |
|
} |
|
|
|
private async Task LoadSharedPropertiesAsync() |
|
{ |
|
if (!IsConnected) throw new InvalidOperationException("Client is not connected"); |
|
|
|
ModelNames = await Client.GetModelNamesAsync(); |
|
Samplers = await Client.GetSamplerNamesAsync(); |
|
} |
|
|
|
protected void ClearSharedProperties() |
|
{ |
|
ModelNames = null; |
|
} |
|
|
|
public async Task ConnectAsync() |
|
{ |
|
if (IsConnected) return; |
|
|
|
Client = new ComfyClient(apiFactory, new Uri("http://127.0.0.1:8188")); |
|
await Client.ConnectAsync(); |
|
await LoadSharedPropertiesAsync(); |
|
} |
|
|
|
public async Task CloseAsync() |
|
{ |
|
if (!IsConnected) return; |
|
|
|
await Client.CloseAsync(); |
|
Client = null; |
|
ClearSharedProperties(); |
|
} |
|
|
|
public void Dispose() |
|
{ |
|
Client?.Dispose(); |
|
Client = null; |
|
GC.SuppressFinalize(this); |
|
} |
|
|
|
~InferenceClientManager() |
|
{ |
|
Dispose(); |
|
} |
|
}
|
|
|