-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathChatAIze.GenerativeCS.csproj
More file actions
83 lines (83 loc) · 4.66 KB
/
ChatAIze.GenerativeCS.csproj
File metadata and controls
83 lines (83 loc) · 4.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>Generative CS</Title>
<Product>Generative CS</Product>
<Version>0.15.0</Version>
<Company>ChatAIze</Company>
<Authors>Marcel Kwiatkowski</Authors>
<Copyright>© ChatAIze 2025</Copyright>
<AssemblyName>ChatAIze.GenerativeCS</AssemblyName>
<RootNamespace>ChatAIze.GenerativeCS</RootNamespace>
<PackageId>ChatAIze.GenerativeCS</PackageId>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://www.chataize.com</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/chataize/generative-cs/releases</PackageReleaseNotes>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/chataize/generative-cs</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<SuppressSymbolPackageFormatValidation>true</SuppressSymbolPackageFormatValidation>
<Description>
Generative AI library for .NET 9.0 with built-in OpenAI ChatGPT and Google Gemini API clients
and support for C# function calling via reflection. Now includes multimodal support for Gemini,
allowing text, PDF, DOC, video, audio, and image file processing.
Features:
- Chat Completion
- Gemini Multimodal Requests (text with files)
- Gemini File Management (upload, get, list, delete)
- Response Streaming
- Text Embedding
- Text-to-Speech
- Speech-to-Text
- Moderation
- Configurable Token Limit
- Configurable Character Limit
- Configurable Message Limit
- Message Pinning
- Function Calling
- Support for Dependency Injection
- Automatic Reattempt on Failure
- Advanced Customization
</Description>
<PackageTags>
ai api api-client api-wrapper artificial-intelligence asp-net asp-net-core aspnet aspnet-core
aspnetcore assistant audio auto automation bard bing bing-chat bot calling chat chat-bot
chat-completion chat-completion-provider chat-gpt chat-gpt-api chataize chatbot chatgpt
chatgpt-api client co co-pilot complete completion completion-generator completion-provider
completions completions-generator completions-provider conversation conversational
conversational-ai copilot cs csharp davinci dialog dotnet dotnet-core embedding
embedding-model embeddings embeddings-model file-data file-upload file-uri function function-calling functional
functional-gpt functions functions-calling gemini gemini-api gemini-api-client gemini-client
gemini-pro gemini-pro-api gemini-pro-api-client gemini-pro-client generation generative-ai
generative-cs generator google google-bard google-gemini google-gemini-pro
google-gemini-pro-api google-gemini-pro-api-client google-gemini-pro-client gpt gpt-3 gpt-4
gpt-function gpt-functions gpt3 gpt4 image kernel language language-model learning library llama llm
machine machine-learning method method-calling methods methods-calling microsot ml model
moderation multi-modal multimodal natural natural-language-processing nlp open-ai open-ai-api open-ai-client openai
openai-api openai-api-client openai-client pdf pilot pro processing prompt provider reflection
respond response response-completion response-generation rest rest-api restful restful-api
robot sdk search semantic sound speech speech-to-text stream streaming synthesis text
text-completion text-embedding text-embeddings text-generation text-synthesis text-to-speech
token transcript transcription transformer transformer-model transformers transformers-model
translation translator tts txt turbo vector vector-embedding vector-embeddings vector-search
vertex video virtual virtual-assistant voice whisper whisper-api wrapper
</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
<None Include="../README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ChatAIze.Abstractions" Version="0.12.17" />
<PackageReference Include="ChatAIze.Utilities" Version="0.5.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.4" />
</ItemGroup>
</Project>