Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions voxto.Tests/MarkdownFileOutputTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.IO;
using Xunit;
using Voxto;

namespace Voxto.Tests;
Expand Down
1 change: 1 addition & 0 deletions voxto.Tests/OutputManagerTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Xunit;
using Voxto;

namespace Voxto.Tests;
Expand Down
1 change: 1 addition & 0 deletions voxto.Tests/TodoAppendOutputTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.IO;
using Xunit;
using Voxto;

namespace Voxto.Tests;
Expand Down
1 change: 1 addition & 0 deletions voxto.Tests/TranscriptionResultTests.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Xunit;
using Voxto;

namespace Voxto.Tests;
Expand Down
2 changes: 1 addition & 1 deletion voxto/RecorderService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ private async Task<string> EnsureModelDownloadedAsync()
ModelDownloadStarted?.Invoke(_settings.ModelType);
try
{
using var modelStream = await WhisperGgmlDownloader.GetGgmlModelAsync(ggmlType);
using var modelStream = await WhisperGgmlDownloader.Default.GetGgmlModelAsync(ggmlType);
using var fileStream = File.OpenWrite(modelPath);
await modelStream.CopyToAsync(fileStream);
Log.Information("Model downloaded successfully: {Model}", _settings.ModelType);
Expand Down
6 changes: 3 additions & 3 deletions voxto/voxto.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Whisper.net" Version="1.7.2" />
<PackageReference Include="Whisper.net.Runtime" Version="1.7.2" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="Whisper.net" Version="1.9.0" />
<PackageReference Include="Whisper.net.Runtime" Version="1.9.0" />
<PackageReference Include="NAudio" Version="2.3.0" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
</ItemGroup>
Expand Down