LLamaSharp/README.md

254 lines
12 KiB
Markdown
Raw Normal View History

![logo](Assets/LLamaSharpLogo.png)
2023-05-11 16:32:07 +08:00
2023-05-24 00:57:45 +08:00
[![Discord](https://img.shields.io/discord/1106946823282761851?label=Discord)](https://discord.gg/7wNVU65ZDY)
2023-05-23 04:09:16 +08:00
[![QQ Group](https://img.shields.io/static/v1?label=QQ&message=加入QQ群&color=brightgreen)](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=sN9VVMwbWjs5L0ATpizKKxOcZdEPMrp8&authKey=RLDw41bLTrEyEgZZi%2FzT4pYk%2BwmEFgFcrhs8ZbkiVY7a4JFckzJefaYNW6Lk4yPX&noverify=0&group_code=985366726)
2023-05-18 11:47:49 +08:00
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp?label=LLamaSharp)](https://www.nuget.org/packages/LLamaSharp)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cpu?label=LLamaSharp.Backend.Cpu)](https://www.nuget.org/packages/LLamaSharp.Backend.Cpu)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cuda11?label=LLamaSharp.Backend.Cuda11)](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda11)
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cuda12?label=LLamaSharp.Backend.Cuda12)](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda12)
2023-10-25 01:45:54 +08:00
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.semantic-kernel?label=LLamaSharp.semantic-kernel)](https://www.nuget.org/packages/LLamaSharp.semantic-kernel)
2023-11-13 03:47:48 +08:00
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.kernel-memory?label=LLamaSharp.kernel-memory)](https://www.nuget.org/packages/LLamaSharp.kernel-memory)
2023-05-18 11:47:49 +08:00
2023-11-02 02:36:46 +08:00
**The C#/.NET binding of [llama.cpp](https://github.com/ggerganov/llama.cpp). It provides higher-level APIs to inference the LLaMA Models and deploy it on local device with C#/.NET. It works on
2023-11-28 07:05:28 +08:00
both Windows, Linux and MAC without requirement for compiling llama.cpp yourself. Even without a GPU or not enough GPU memory, you can still apply LLaMA models well with this repo. 🤗**
2023-05-11 16:32:07 +08:00
2023-11-02 02:36:46 +08:00
**Furthermore, it provides integrations with other projects such as [semantic-kernel](https://github.com/microsoft/semantic-kernel), [kernel-memory](https://github.com/microsoft/kernel-memory) and [BotSharp](https://github.com/SciSharp/BotSharp) to provide higher-level applications.**
2023-06-20 02:58:54 +08:00
2023-11-17 18:58:23 +08:00
**Discussions about the roadmap to v1.0.0: [#287](https://github.com/SciSharp/LLamaSharp/issues/287)**
2023-11-13 03:47:48 +08:00
<details>
<summary>Table of Contents</summary>
<ul>
<li><a href="#Documentation">Documentation</a></li>
<li><a href="#Examples">Examples</a></li>
<li><a href="#Installation">Installation</a></li>
<li>
<a href="#(Quick Start)">Quick Start</a>
<ul>
<li><a href="#Model Inference and Chat Session">Model Inference and Chat Session</a></li>
<li><a href="#Quantization">Quantization</a></li>
<li><a href="#Web API">Web API</a></li>
</ul>
</li>
<li><a href="#Features">Features</a></li>
<li><a href="#Console Demo">Console Demo</a></li>
<li><a href="#FAQ">FAQ</a></li>
<li><a href="#Contributing">Contributing</a></li>
<li><a href="#Contact us">Contact us</a></li>
<li>
<a href="#Apendix">Apendix</a>
<ul>
<li><a href="#Mapping from LLamaSharp to llama.cpp">Mapping from LLamaSharp to llama.cpp</a></li>
</ul>
</li>
</ul>
</details>
2023-06-20 02:58:54 +08:00
## Documentation
2023-11-13 03:47:48 +08:00
- [Quick start](https://scisharp.github.io/LLamaSharp/latest/GetStarted/)
- [Tricks for FAQ](https://scisharp.github.io/LLamaSharp/latest/Tricks/)
- [Full documentation](https://scisharp.github.io/LLamaSharp/latest/)
- [API reference](https://scisharp.github.io/LLamaSharp/latest/xmldocs/)
2023-11-04 03:47:21 +08:00
## Examples
2023-11-17 21:17:27 +08:00
- [Official Console Examples](./LLama.Examples/)
2023-11-04 03:47:21 +08:00
- [Unity Demo](https://github.com/eublefar/LLAMASharpUnityDemo)
- [LLamaStack (with WPF and Web support)](https://github.com/saddam213/LLamaStack)
2023-05-11 17:44:42 +08:00
2023-05-11 16:32:07 +08:00
## Installation
2023-05-17 03:27:14 +08:00
Firstly, search `LLamaSharp` in nuget package manager and install it.
2023-05-11 16:32:07 +08:00
```
2023-05-11 20:30:36 +08:00
PM> Install-Package LLamaSharp
2023-05-11 16:32:07 +08:00
```
2023-11-04 00:13:47 +08:00
Then, search and install one of the following backends. (Please don't install two or more)
2023-05-17 03:27:14 +08:00
```
2023-10-25 01:45:54 +08:00
LLamaSharp.Backend.Cpu # cpu for windows, linux and mac (mac metal is also supported)
2023-09-06 02:56:18 +08:00
LLamaSharp.Backend.Cuda11 # cuda11 for windows and linux
LLamaSharp.Backend.Cuda12 # cuda12 for windows and linux
2023-11-12 15:26:45 +08:00
LLamaSharp.Backend.MacMetal # Removed after v0.8.0, metal support has been moved to cpu version now
2023-09-06 02:56:18 +08:00
```
2023-11-04 00:13:47 +08:00
We publish these backends because they are the most popular ones. If none of them matches, please compile the [llama.cpp](https://github.com/ggerganov/llama.cpp) yourself. In this case, please **DO NOT** install the backend packages, instead, add your DLL to your project and ensure it will be copied to the output directory when compiling your project. For more informations please refer to ([this guide](https://scisharp.github.io/LLamaSharp/0.5/ContributingGuide/)).
For [microsoft semantic-kernel](https://github.com/microsoft/semantic-kernel) integration, please search and install the following package:
2023-09-06 02:56:18 +08:00
```
LLamaSharp.semantic-kernel
2023-05-17 03:27:14 +08:00
```
For [microsoft kernel-memory](https://github.com/microsoft/kernel-memory) integration, please search and install the following package (currently kernel-memory only supports net6.0):
```
LLamaSharp.kernel-memory
```
2023-11-03 23:59:45 +08:00
### Tips for choosing a version
In general, there may be some break changes between two minor releases, for example 0.5.1 and 0.6.0. On the contrary, we don't introduce API break changes in patch release. Therefore it's recommended to keep the highest patch version of a minor release. For example, keep 0.5.6 instead of 0.5.3.
## Quick Start
2023-05-11 16:32:07 +08:00
2023-05-12 12:04:44 +08:00
#### Model Inference and Chat Session
2023-06-20 02:58:54 +08:00
LLamaSharp provides two ways to run inference: `LLamaExecutor` and `ChatSession`. The chat session is a higher-level wrapping of the executor and the model. Here's a simple example to use chat session.
2023-05-11 16:32:07 +08:00
```cs
2023-06-20 02:58:54 +08:00
using LLama.Common;
using LLama;
string modelPath = "<Your model path>"; // change it to your own model path
2023-06-20 02:58:54 +08:00
var prompt = "Transcript of a dialog, where the User interacts with an Assistant named Bob. Bob is helpful, kind, honest, good at writing, and never fails to answer the User's requests immediately and with precision.\r\n\r\nUser: Hello, Bob.\r\nBob: Hello. How may I help you today?\r\nUser: Please tell me the largest city in Europe.\r\nBob: Sure. The largest city in Europe is Moscow, the capital of Russia.\r\nUser:"; // use the "chat-with-bob" prompt here.
2023-05-11 16:32:07 +08:00
2023-09-09 23:19:27 +08:00
// Load a model
var parameters = new ModelParams(modelPath)
{
ContextSize = 1024,
Seed = 1337,
GpuLayerCount = 5
};
using var model = LLamaWeights.LoadFromFile(parameters);
2023-06-20 02:58:54 +08:00
// Initialize a chat session
2023-09-09 23:19:27 +08:00
using var context = model.CreateContext(parameters);
var ex = new InteractiveExecutor(context);
2023-06-20 02:58:54 +08:00
ChatSession session = new ChatSession(ex);
// show the prompt
Console.WriteLine();
Console.Write(prompt);
// run the inference in a loop to chat with LLM
while (prompt != "stop")
2023-05-11 16:32:07 +08:00
{
await foreach (var text in session.ChatAsync(prompt, new InferenceParams() { Temperature = 0.6f, AntiPrompts = new List<string> { "User:" } }))
2023-05-11 16:32:07 +08:00
{
2023-06-20 02:58:54 +08:00
Console.Write(text);
2023-05-11 16:32:07 +08:00
}
2023-06-20 02:58:54 +08:00
prompt = Console.ReadLine();
2023-05-11 16:32:07 +08:00
}
2023-06-20 02:58:54 +08:00
// save the session
session.SaveSession("SavedSessionPath");
2023-05-11 16:32:07 +08:00
```
2023-05-12 12:04:44 +08:00
#### Quantization
2023-05-11 17:44:42 +08:00
The following example shows how to quantize the model. With LLamaSharp you needn't to compile c++ project and run scripts to quantize the model, instead, just run it in C#.
```cs
string srcFilename = "<Your source path>";
string dstFilename = "<Your destination path>";
string ftype = "q4_0";
if(Quantizer.Quantize(srcFileName, dstFilename, ftype))
{
Console.WriteLine("Quantization succeed!");
}
else
{
Console.WriteLine("Quantization failed!");
}
```
2023-05-17 03:27:14 +08:00
For more usages, please refer to [Examples](./LLama.Examples).
2023-05-12 12:04:44 +08:00
#### Web API
2023-11-03 23:59:45 +08:00
We provide [the integration of ASP.NET core](./LLama.WebAPI) and a [web app demo](./LLama.Web). Please clone the repo to have a try.
2023-05-12 12:04:44 +08:00
2023-05-23 05:40:54 +08:00
Since we are in short of hands, if you're familiar with ASP.NET core, we'll appreciate it if you would like to help upgrading the Web API integration.
2023-11-12 15:26:45 +08:00
## Features
2023-05-11 16:32:07 +08:00
2023-06-20 02:58:54 +08:00
---
2023-06-20 03:02:53 +08:00
✅: completed. ⚠️: outdated for latest release but will be updated. 🔳: not completed
2023-06-20 02:58:54 +08:00
---
2023-05-23 05:40:54 +08:00
✅ LLaMa model inference
2023-05-11 16:32:07 +08:00
2023-05-23 05:40:54 +08:00
✅ Embeddings generation, tokenization and detokenization
2023-05-11 16:32:07 +08:00
2023-05-23 05:40:54 +08:00
✅ Chat session
2023-05-11 16:32:07 +08:00
2023-05-11 17:44:42 +08:00
✅ Quantization
2023-05-11 16:32:07 +08:00
2023-10-25 01:45:54 +08:00
✅ Grammar
2023-05-23 05:40:54 +08:00
✅ State saving and loading
2023-06-20 03:02:53 +08:00
⚠️ BotSharp Integration
2023-06-20 02:58:54 +08:00
2023-08-06 21:37:54 +08:00
✅ ASP.NET core Integration
2023-06-20 02:58:54 +08:00
2023-09-06 02:56:18 +08:00
✅ Semantic-kernel Integration
2023-05-11 16:32:07 +08:00
2023-06-22 03:49:50 +08:00
🔳 Fine-tune
✅ Local document search (enabled by kernel-memory now)
2023-06-22 03:49:50 +08:00
2023-05-23 05:40:54 +08:00
🔳 MAUI Integration
2023-05-11 16:32:07 +08:00
2023-11-13 03:47:48 +08:00
## Console Demo
![demo-console](Assets/console_demo.gif)
## FAQ
1. GPU out of memory: Please try setting `n_gpu_layers` to a smaller number.
2. Unsupported model: `llama.cpp` is under quick development and often has break changes. Please check the release date of the model and find a suitable version of LLamaSharp to install, or generate `gguf` format weights from original weights yourself.
3. Cannot load native lirary: 1) ensure you installed one of the backend packages. 2) Run `NativeLibraryConfig.WithLogs()` at the very beginning of your code to print more informations. 3) check if your system supports avx2, which is the default settings of official runtimes now. If not, please compile llama.cpp yourself and specify it with `NativeLibraryConfig.WithLibrary`.
4. How to find a model: Models in format `gguf` are valid for LLamaSharp (and `ggml` before v0.5.1). If you're new to LLM/LLaMA, it's a good choice to search `LLama` and `gguf` on [huggingface](https://huggingface.co/) to find a model. Another choice is generate gguf format file yourself with a pytorch weight (or any other), pleae refer to [convert.py](https://github.com/ggerganov/llama.cpp/blob/master/convert.py) and [convert-llama-ggml-to-gguf.py](https://github.com/ggerganov/llama.cpp/blob/master/convert-llama-ggml-to-gguf.py) to get gguf file through a ggml transformation.
2023-05-23 05:40:54 +08:00
## Contributing
2023-11-13 03:47:48 +08:00
Any contribution is welcomed! There's a TODO list in [LLamaSharp Dev Project](https://github.com/orgs/SciSharp/projects/5) and you could pick an interested one to start. Please read the [contributing guide](https://scisharp.github.io/LLamaSharp/latest/ContributingGuide/) for more informations.
You can also do one of the followings to help us make LLamaSharp better:
2023-05-23 05:40:54 +08:00
2023-11-13 03:47:48 +08:00
- Submit a feature request.
- Star and share LLamaSharp to let others know it.
- Write a blog or demo about LLamaSharp.
2023-05-23 05:40:54 +08:00
- Help to develop Web API and UI integration.
2023-11-13 03:47:48 +08:00
- Just open an issue about the problem you met!
2023-05-23 05:40:54 +08:00
2023-05-13 22:48:40 +08:00
## Contact us
2023-11-13 03:47:48 +08:00
Join our chat on [Discord](https://discord.gg/7wNVU65ZDY) (please contact Rinne to join the dev channel if you want to be a contributor).
2023-05-13 22:48:40 +08:00
2023-05-23 04:09:16 +08:00
Join [QQ group](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=sN9VVMwbWjs5L0ATpizKKxOcZdEPMrp8&authKey=RLDw41bLTrEyEgZZi%2FzT4pYk%2BwmEFgFcrhs8ZbkiVY7a4JFckzJefaYNW6Lk4yPX&noverify=0&group_code=985366726)
2023-11-13 03:47:48 +08:00
## Apendix
### Mapping from LLamaSharp to llama.cpp
Here's the mapping of them and corresponding model samples provided by `LLamaSharp`. If you're not sure which model is available for a version, please try our sample model.
The llama.cpp commit id will help if you want to compile a DLL yourself.
| LLamaSharp | Verified Model Resources | llama.cpp commit id |
| - | -- | - |
| v0.2.0 | This version is not recommended to use. | - |
| v0.2.1 | [WizardLM](https://huggingface.co/TheBloke/wizardLM-7B-GGML/tree/previous_llama), [Vicuna (filenames with "old")](https://huggingface.co/eachadea/ggml-vicuna-13b-1.1/tree/main) | - |
| v0.2.2, v0.2.3 | [WizardLM](https://huggingface.co/TheBloke/wizardLM-7B-GGML/tree/previous_llama_ggmlv2), [Vicuna (filenames without "old")](https://huggingface.co/eachadea/ggml-vicuna-13b-1.1/tree/main) | 63d2046 |
| v0.3.0, v0.4.0 | [LLamaSharpSamples v0.3.0](https://huggingface.co/AsakusaRinne/LLamaSharpSamples/tree/v0.3.0), [WizardLM](https://huggingface.co/TheBloke/wizardLM-7B-GGML/tree/main) | 7e4ea5b |
| v0.4.1-preview | [Open llama 3b](https://huggingface.co/SlyEcho/open_llama_3b_ggml), [Open Buddy](https://huggingface.co/OpenBuddy/openbuddy-llama-ggml)| aacdbd4 |
|v0.4.2-preview | [Llama2 7b GGML](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGML)| 3323112 |
| v0.5.1 | [Llama2 7b GGUF](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF)| 6b73ef1 |
| v0.6.0 | | [cb33f43](https://github.com/ggerganov/llama.cpp/commit/cb33f43a2a9f5a5a5f8d290dd97c625d9ba97a2f) |
| v0.7.0, v0.8.0 | [Thespis-13B](https://huggingface.co/TheBloke/Thespis-13B-v0.5-GGUF/tree/main?not-for-all-audiences=true), [LLaMA2-7B](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF) | [207b519](https://github.com/ggerganov/llama.cpp/commit/207b51900e15cc7f89763a3bb1c565fe11cbb45d) |
2023-11-29 02:13:46 +08:00
| v0.8.1 | | [e937066](https://github.com/ggerganov/llama.cpp/commit/e937066420b79a757bf80e9836eb12b88420a218) |
2023-11-13 03:47:48 +08:00
2023-05-11 16:32:07 +08:00
## License
2023-05-13 20:15:09 +08:00
This project is licensed under the terms of the MIT license.