Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.
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
35 changes: 21 additions & 14 deletions .fernignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,41 +8,48 @@ icon.png
.github/workflows/ci.yml
.github/workflows/publish-reference.yml
src/AssemblyAI.sln
src/AssemblyAI/AssemblyAI.csproj
src/AssemblyAI/Core/JsonConfiguration.cs
src/AssemblyAI/Core/Public/ApiException.cs
src/AssemblyAI/Core/Public/AssemblyAIException.cs
src/AssemblyAI/Core/StringEnumSerializer.cs
src/AssemblyAI/Core/CustomConstants.cs
src/AssemblyAI/Types/Error.cs
src/AssemblyAI/AssemblyAI.Custom.props
src/AssemblyAI/AssemblyAIClient.cs
src/AssemblyAI/UserAgent.cs
src/AssemblyAI/Event.cs
src/AssemblyAI/AssemblyAIClient.cs
src/AssemblyAI/DependencyInjectionExtensions.cs
src/AssemblyAI/EnumConverter.cs
src/AssemblyAI/Types/Error.cs
src/AssemblyAI/Core/EnumSerializer.cs
src/AssemblyAI/Core/JsonConfiguration.cs
src/AssemblyAI/Core/Public/ExtendedRequestOptions.cs
src/AssemblyAI/Core/Public/AssemblyAIClientEnvironment.cs
src/AssemblyAI/Core/Public/ClientOptions.cs
src/AssemblyAI/Core/Public/ExtendedClientOptions.cs
src/AssemblyAI/Core/Public/ApiException.cs
src/AssemblyAI/Core/Public/AssemblyAIException.cs
src/AssemblyAI/Files/ExtendedFilesClient.cs
src/AssemblyAI/Transcripts/ExtendedTranscriptsClient.cs
src/AssemblyAI/Transcripts/TranscriptNotCompletedStatusException.cs
src/AssemblyAI/Transcripts/Types/TranscriptExtensions.cs
src/AssemblyAI/Transcripts/Types/TranscriptParamsMapper.cs
src/AssemblyAI/Transcripts/Types/TranscriptParamsCloner.cs
src/AssemblyAI/Transcripts/TranscriptNotCompletedStatusException.cs
src/AssemblyAI/Lemur/ExtendedLemurClient.cs
src/AssemblyAI/Lemur/Types/LemurResponse.cs
src/AssemblyAI/Lemur/Types/LemurModel.cs
src/AssemblyAI/Realtime/RealtimeTranscriber.cs
src/AssemblyAI/Realtime/WebsocketClient
src/AssemblyAI/Realtime/Types/RealtimeTranscript.cs
src/AssemblyAI/Realtime/ExtendedRealtimeClient.cs
src/AssemblyAI/Realtime/RealtimeTranscriberOptions.cs
src/AssemblyAI/Realtime/Types/RealtimeTranscript.cs
src/AssemblyAI/Realtime/Types/TerminateSession.cs
src/AssemblyAI/Realtime/Types/ForceEndUtterance.cs
src/AssemblyAI/Realtime/Types/Realtime.cs
src/AssemblyAI.Test
src/AssemblyAI.Test/TestClient.cs
src/AssemblyAI.Test/Core/RawClientTests.cs
src/AssemblyAI.UnitTests

src/AssemblyAI.IntegrationTests
docfx

Samples

# TODO: remove these ignores when AssemblyAI fixes the API
src/AssemblyAI/Transcripts/Types/ContentSafetyLabel.cs
src/AssemblyAI/Transcripts/Types/ContentSafetyLabelsResult.cs
src/AssemblyAI/Transcripts/Types/TopicDetectionModelResult.cs

Samples
src/AssemblyAI/Transcripts/Types/TopicDetectionModelResult.cs
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
strategy:
fail-fast: false
matrix:
framework: [net462, net6.0]
framework: [net462, net8.0]
os: [ubuntu-latest, windows-latest]
exclude:
- os: ubuntu-latest
framework: net462
name: Run Tests on ${{ matrix.os }} with ${{ matrix.framework }}
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand All @@ -44,9 +44,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.x
6.x
dotnet-version: 8.x

- name: Install tools
run: |
Expand Down
Loading
Loading