mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-24 06:12:15 +00:00
8 lines
259 B
C#
8 lines
259 B
C#
|
|
namespace AIStudio.Provider;
|
||
|
|
|
||
|
|
public sealed record TranscriptionResult(bool Success, string Text)
|
||
|
|
{
|
||
|
|
public static TranscriptionResult FromText(string text) => new(true, text);
|
||
|
|
|
||
|
|
public static TranscriptionResult Failure() => new(false, string.Empty);
|
||
|
|
}
|