-
Notifications
You must be signed in to change notification settings - Fork 13
/
GroqApiLibrary.csproj
27 lines (26 loc) · 1.27 KB
/
GroqApiLibrary.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Groq API Library</Title>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>J. Gravelle</Authors>
<Description>This library provides a simple interface to interact with the Groq AI API. It allows you to send requests to the API and receive responses asynchronously using .NET 8. Now with Whisper text-to-speech AND tool support!</Description>
<Copyright>©2024 - J. Gravelle</Copyright>
<PackageProjectUrl>https://console.groq.com/docs/libraries</PackageProjectUrl>
<RepositoryUrl>https://github.com/jgravelle/GroqApiLibrary</RepositoryUrl>
<PackageIcon>g_icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<PackageTags>Groq, API, Windows, .NET, Core</PackageTags>
<AssemblyVersion>1.0.0.8</AssemblyVersion>
<FileVersion>1.0.0.8</FileVersion>
<Version>1.0.8</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.7" />
<None Include="README.md" Pack="True" PackagePath="\" />
<None Include="g_icon.png" Pack="True" PackagePath="\" />
</ItemGroup>
</Project>