-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtryAGI.OpenAI.csproj
More file actions
41 lines (34 loc) · 1.74 KB
/
tryAGI.OpenAI.csproj
File metadata and controls
41 lines (34 loc) · 1.74 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net4.6.2;net8.0;net9.0</TargetFrameworks>
<NoWarn>$(NoWarn);CA1724;CA2227;CA1819;CA1822</NoWarn>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Text.Json" />
</ItemGroup>
<ItemGroup Label="CLSCompliant">
<AssemblyAttribute Include="System.CLSCompliantAttribute">
<_Parameter1>true</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<PropertyGroup Label="Nuget">
<Description>
Generated C# SDK based on official OpenAI OpenAPI specification.
Includes C# Source Generator which allows you to define functions natively through a C# interface, and also provides extensions that make it easier to call this interface later</Description>
<PackageTags>api;client;sdk;dotnet;swagger;openapi;specification;openai;generated;nswag;functions;gpt-3.5;gpt-4;chatgpt;generator;source generator;constants;prices;pricing;vision;audio;embedding;moderation;image;chat</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CSharpToJsonSchema" Version="3.10.1" />
<PackageReference Include="PolySharp" Version="1.15.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Net.ServerSentEvents" Version="9.0.8" />
<PackageReference Include="Tiktoken" Version="2.2.0" />
<PackageReference Include="System.Text.Json" Version="9.0.8" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net4.6.2'">
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="8.0.19" />
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>