-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring, code cleanup, razor UI progress, reorganize unit tests (#95
- Loading branch information
1 parent
370d2f5
commit 29099ba
Showing
35 changed files
with
606 additions
and
562 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 0 additions & 22 deletions
22
LM-Kit-Maestro/Services/LMKitService.LMKitRequest.TranslationRequestParameters.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using LMKit.Model; | ||
using System.ComponentModel; | ||
|
||
namespace LMKit.Maestro.Services; | ||
|
||
public partial class LMKitService | ||
{ | ||
public partial class LMKitServiceState | ||
{ | ||
public LMKitConfig Config { get; } = new LMKitConfig(); | ||
|
||
public SemaphoreSlim Semaphore { get; } = new SemaphoreSlim(1); | ||
|
||
public LM? LoadedModel { get; set; } | ||
|
||
public Uri? LoadedModelUri { get; set; } | ||
|
||
public LMKitModelLoadingState ModelLoadingState { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.