-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Changed ElevenLabsClient to be IDisposable - The ElevenLabsClient must now be disposed if you do not pass your own HttpClient - Updated ElevenLabsClientSettings to accept custom domains - Added filesystemless overloads for uploading audio clips ElevenLabs-DotNet-Proxy 2.2.0 - Updated implementation to include WebApplication builder --------- Co-authored-by: Stillkill <[email protected]>
- Loading branch information
1 parent
cce4288
commit 9caa655
Showing
13 changed files
with
363 additions
and
101 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>disable</ImplicitUsings> | ||
<Nullable>disable</Nullable> | ||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<SignAssembly>false</SignAssembly> | ||
<Authors>Stephen Hodgson</Authors> | ||
<Product>ElevenLabs-DotNet-Proxy</Product> | ||
<Description>A simple Proxy API gateway for ElevenLabs-DotNet to make authenticated requests from a front end application without exposing your API keys.</Description> | ||
<Copyright>2023</Copyright> | ||
<PackageProjectUrl>https://github.com/RageAgainstThePixel/ElevenLabs-DotNet</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/RageAgainstThePixel/ElevenLabs-DotNet</RepositoryUrl> | ||
<PackageTags>ElevenLabs, AI, ML, API, api-proxy, proxy, gateway</PackageTags> | ||
<Title>ElevenLabs API Proxy</Title> | ||
<PackageId>ElevenLabs-DotNet-Proxy</PackageId> | ||
<Version>1.0.1</Version> | ||
<RootNamespace>ElevenLabs.Proxy</RootNamespace> | ||
<PackageReleaseNotes>Initial Release!</PackageReleaseNotes> | ||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<PackageReadmeFile>Readme.md</PackageReadmeFile> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<PackageIcon>ElevenLabsIcon.png</PackageIcon> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\ElevenLabs-DotNet\ElevenLabs-DotNet.csproj" /> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\ElevenLabs-DotNet\Assets\ElevenLabsIcon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="Readme.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<ImplicitUsings>disable</ImplicitUsings> | ||
<Nullable>disable</Nullable> | ||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<SignAssembly>false</SignAssembly> | ||
<Authors>Stephen Hodgson</Authors> | ||
<Product>ElevenLabs-DotNet-Proxy</Product> | ||
<Description>A simple Proxy API gateway for ElevenLabs-DotNet to make authenticated requests from a front end application without exposing your API keys.</Description> | ||
<Copyright>2024</Copyright> | ||
<PackageProjectUrl>https://github.com/RageAgainstThePixel/ElevenLabs-DotNet</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/RageAgainstThePixel/ElevenLabs-DotNet</RepositoryUrl> | ||
<PackageTags>ElevenLabs, AI, ML, API, api-proxy, proxy, gateway</PackageTags> | ||
<Title>ElevenLabs API Proxy</Title> | ||
<PackageId>ElevenLabs-DotNet-Proxy</PackageId> | ||
<Version>1.2.0</Version> | ||
<RootNamespace>ElevenLabs.Proxy</RootNamespace> | ||
<PackageReleaseNotes>Initial Release!</PackageReleaseNotes> | ||
<TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<PackageReadmeFile>Readme.md</PackageReadmeFile> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<PackageIcon>ElevenLabsIcon.png</PackageIcon> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\ElevenLabs-DotNet\ElevenLabs-DotNet.csproj" /> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\ElevenLabs-DotNet\Assets\ElevenLabsIcon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="Readme.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
</Project> |
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
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.