Releases: awaescher/OllamaSharp
Releases · awaescher/OllamaSharp
Release 4.0.1
- Implemented
IChatClient
to make OllamaSharp the goto implementation for Ollama with Microsoft.Extensions.AI, see #111 - Added
Async
suffixes to asynchronous methods, e.g.Complete()
→CompleteAsyn()
, see #81 - Added
ConfigureAwait(false)
to asynchronous methods
Thanks for the idea and the supprt @SteveSandersonMS, @RogerBarreto and @stephentoub 🙏
Release 3.0.15
- Added support for different tool arguments types #114 (required for Semantic Kernel)
Once again, thanks @RogerBarreto
Release 3.0.14
- Removed
tools
,tool_calls
andimages
in requests if not required #110
Thanks @RogerBarreto
Release 3.0.13
- Fixed a parser bug when Bad Request was returned from the Ollama API without a proper json body #108
Release 3.0.12
- Included XML documentation with the NuGet package
Release 3.0.11
- Updated
System.Text.Json
from8.0.4
to8.0.5
to fix CVE-2024-43485: .NET Denial of Service Vulnerability
Release 3.0.10
- Added a strong name to fully support .NET Framework ("full framework"), see #85 and this article.
- Changed
Chat.Messages
from a readonly to a read/write property to simplify chat history manipulation #82
Release 3.0.9
- Added
ShowModelResponse.Projector
for vision models with CLIP #92
Release 3.0.8
Release 3.0.7
- Exposed
RequestOptions
(to set the temperature, etc.) when using theChat
class #77