Skip to content

Commit 5ada3ae

Browse files
authored
Merge pull request #975 from martindevans/release_0.19
Release 0.19
2 parents b321839 + 1462342 commit 5ada3ae

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

LLama.KernelMemory/LLamaSharp.KernelMemory.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net8.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<Version>0.18.0</Version>
7+
<Version>0.19.0</Version>
88
<Authors>Xbotter</Authors>
99
<Company>SciSharp STACK</Company>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -17,7 +17,7 @@
1717
The integration of LLamaSharp and Microsoft kernel-memory. It could make it easy to support document search for LLamaSharp model inference.
1818
</Description>
1919
<PackageReleaseNotes>
20-
v0.18.0 released with v0.18.0 of LLamaSharp.
20+
v0.19.0 released with v0.19.0 of LLamaSharp.
2121
</PackageReleaseNotes>
2222
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2323
<PackageOutputPath>packages</PackageOutputPath>

LLama.SemanticKernel/LLamaSharp.SemanticKernel.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<ImplicitUsings>enable</ImplicitUsings>
1111
<Nullable>enable</Nullable>
1212

13-
<Version>0.18.0</Version>
13+
<Version>0.19.0</Version>
1414
<Authors>Tim Miller, Xbotter</Authors>
1515
<Company>SciSharp STACK</Company>
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -23,7 +23,7 @@
2323
The integration of LLamaSharp and Microsoft semantic-kernel.
2424
</Description>
2525
<PackageReleaseNotes>
26-
v0.18.0 released with v0.18.0 of LLamaSharp.
26+
v0.19.0 released with v0.19.0 of LLamaSharp.
2727
</PackageReleaseNotes>
2828
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2929
<PackageOutputPath>packages</PackageOutputPath>

LLama/LLamaSharp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Platforms>AnyCPU;x64;Arm64</Platforms>
88
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
99

10-
<Version>0.18.0</Version>
10+
<Version>0.19.0</Version>
1111
<Authors>Rinne, Martin Evans, jlsantiago and all the other contributors in https://github.com/SciSharp/LLamaSharp/graphs/contributors.</Authors>
1212
<Company>SciSharp STACK</Company>
1313
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The following examples show how to build APPs with LLamaSharp.
7676
- [ASP.NET Demo](./LLama.Web/)
7777
- [LLamaWorker (ASP.NET Web API like OAI and Function Calling Support)](https://github.com/sangyuxiaowu/LLamaWorker)
7878

79-
![LLamaShrp-Integrations](./Assets/LLamaSharp-Integrations.png)
79+
![LLamaSharp-Integrations](./Assets/LLamaSharp-Integrations.png)
8080

8181

8282
## 🚀Get started
@@ -177,7 +177,7 @@ For more examples, please refer to [LLamaSharp.Examples](./LLama.Examples).
177177

178178
#### Why is my GPU not used when I have installed CUDA?
179179

180-
1. If you are using backend packages, please make sure you have installed the CUDA backend package which matches the CUDA version installed on your system. Please note that before LLamaSharp v0.10.0, only one backend package should be installed at a time.
180+
1. If you are using backend packages, please make sure you have installed the CUDA backend package which matches the CUDA version installed on your system.
181181
2. Add the following line to the very beginning of your code. The log will show which native library file is loaded. If the CPU library is loaded, please try to compile the native library yourself and open an issue for that. If the CUDA library is loaded, please check if `GpuLayerCount > 0` when loading the model weight.
182182

183183
```cs
@@ -258,6 +258,7 @@ If you want to compile llama.cpp yourself you **must** use the exact commit ID l
258258
| v0.16.0 | | [`11b84eb4`](https://github.com/ggerganov/llama.cpp/tree/11b84eb4578864827afcf956db5b571003f18180) |
259259
| v0.17.0 | | [`c35e586e`](https://github.com/ggerganov/llama.cpp/tree/c35e586ea57221844442c65a1172498c54971cb0) |
260260
| v0.18.0 | | [`c35e586e`](https://github.com/ggerganov/llama.cpp/tree/c35e586ea57221844442c65a1172498c54971cb0) |
261+
| v0.19.0 | | [`958367bf`](https://github.com/ggerganov/llama.cpp/tree/958367bf530d943a902afa1ce1c342476098576b) |
261262

262263
## License
263264

0 commit comments

Comments
 (0)