LLamaSharp/README.md

199 lines
8.6 KiB
Markdown
Raw Normal View History

2023-05-12 19:44:16 +08:00
# LLamaSharp - .NET Binding for llama.cpp
2023-05-11 16:32:07 +08:00
![logo](Assets/LLamaSharpLogo.png)
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-06-20 02:58:54 +08:00
**The C#/.NET binding of [llama.cpp](https://github.com/ggerganov/llama.cpp). It provides APIs to inference the LLaMa Models and deploy it on local environment. It works on
both Windows, Linux and MAC without requirment for compiling llama.cpp yourself. Its performance is close to llama.cpp.**
2023-05-11 16:32:07 +08:00
2023-06-20 02:58:54 +08:00
**Furthermore, it provides integrations with other projects such as [BotSharp](https://github.com/SciSharp/BotSharp) to provide higher-level applications and UI.**
## Documentation
- [Quick start](https://scisharp.github.io/LLamaSharp/0.4/GetStarted/)
- [Tricks for FAQ](https://scisharp.github.io/LLamaSharp/0.4/Tricks/)
- [Full documentation](https://scisharp.github.io/LLamaSharp/0.4/)
- [API reference](https://scisharp.github.io/LLamaSharp/0.4/xmldocs/)
- [Examples](./LLama.Examples/NewVersion/)
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-05-17 03:27:14 +08:00
Then, search and install one of the following backends:
2023-05-17 03:27:14 +08:00
```
LLamaSharp.Backend.Cpu
LLamaSharp.Backend.Cuda11
LLamaSharp.Backend.Cuda12
```
2023-05-23 05:40:54 +08:00
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.
2023-05-18 04:52:45 +08:00
2023-05-23 05:40:54 +08:00
| LLamaSharp.Backend | 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.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 |
2023-06-20 02:58:54 +08:00
| v0.3.0, v0.3.1 | 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 |
2023-06-22 03:49:50 +08:00
| v0.4.1 | v0.4.1 | [Open llama 3b](https://huggingface.co/SlyEcho/open_llama_3b_ggml), [Open Buddy](https://huggingface.co/OpenBuddy/openbuddy-llama-ggml)| aacdbd4 |
Many hands make light work. If you have found any other model resource that could work for a version, we'll appreciate it for opening an PR about it! 😊
2023-05-17 03:27:14 +08:00
We publish the backend with cpu, cuda11 and cuda12 because they are the most popular ones. If none of them matches, please compile the [llama.cpp](https://github.com/ggerganov/llama.cpp)
2023-06-22 03:49:50 +08:00
from source and put the `libllama` under your project's output path ([guide](https://scisharp.github.io/LLamaSharp/0.4/ContributingGuide/)).
2023-05-18 20:34:08 +08:00
## FAQ
2023-05-23 05:40:54 +08:00
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 use the model we provide [on huggingface](https://huggingface.co/AsakusaRinne/LLamaSharpSamples).
2023-05-18 20:34:08 +08:00
2023-05-11 21:18:40 +08:00
2023-05-11 16:32:07 +08:00
## Usages
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
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-06-20 02:58:54 +08:00
// Initialize a chat session
var ex = new InteractiveExecutor(new LLamaModel(new ModelParams(modelPath, contextSize: 1024, seed: 1337, gpuLayerCount: 5)));
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
{
2023-06-20 02:58:54 +08:00
foreach (var text in session.Chat(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
We provide the integration of ASP.NET core [here](./LLama.WebAPI). Since currently the API is not stable, please clone the repo and use it. In the future we'll publish it on NuGet.
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-05-11 16:32:07 +08:00
## Demo
![demo-console](Assets/console_demo.gif)
## Roadmap
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-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
⚠️ ASP.NET core Integration
⚠️ Semantic-kernel Integration
2023-05-11 16:32:07 +08:00
2023-06-22 03:49:50 +08:00
🔳 Fine-tune
🔳 Local document search
2023-05-23 05:40:54 +08:00
🔳 MAUI Integration
2023-05-11 16:32:07 +08:00
2023-05-12 19:44:16 +08:00
🔳 Follow up llama.cpp and improve performance
2023-05-11 16:32:07 +08:00
## Assets
2023-05-23 05:40:54 +08:00
Some extra model resources could be found below:
2023-05-11 16:32:07 +08:00
2023-05-23 05:40:54 +08:00
- [Qunatized models provided by LLamaSharp Authors](https://huggingface.co/AsakusaRinne/LLamaSharpSamples)
2023-05-11 16:32:07 +08:00
- [eachadea/ggml-vicuna-13b-1.1](https://huggingface.co/eachadea/ggml-vicuna-13b-1.1/tree/main)
- [TheBloke/wizardLM-7B-GGML](https://huggingface.co/TheBloke/wizardLM-7B-GGML)
- Magnet: [magnet:?xt=urn:btih:b8287ebfa04f879b048d4d4404108cf3e8014352&dn=LLaMA](magnet:?xt=urn:btih:b8287ebfa04f879b048d4d4404108cf3e8014352&dn=LLaMA)
The weights included in the magnet is exactly the weights from [Facebook LLaMa](https://github.com/facebookresearch/llama).
The prompts could be found below:
2023-05-13 22:48:40 +08:00
2023-05-11 16:32:07 +08:00
- [llama.cpp prompts](https://github.com/ggerganov/llama.cpp/tree/master/prompts)
- [ChatGPT_DAN](https://github.com/0xk1h0/ChatGPT_DAN)
2023-05-17 03:29:21 +08:00
- [awesome-chatgpt-prompts](https://github.com/f/awesome-chatgpt-prompts)
- [awesome-chatgpt-prompts-zh](https://github.com/PlexPt/awesome-chatgpt-prompts-zh) (Chinese)
2023-05-11 16:32:07 +08:00
2023-05-23 05:40:54 +08:00
## Contributing
2023-06-20 02:58:54 +08:00
Any contribution is welcomed! Please read the [contributing guide](https://scisharp.github.io/LLamaSharp/0.4/ContributingGuide/). You can do one of the followings to help us make `LLamaSharp` better:
2023-05-23 05:40:54 +08:00
- Append a model link that is available for a version. (This is very important!)
- Star and share `LLamaSharp` to let others know it.
- Add a feature or fix a BUG.
- Help to develop Web API and UI integration.
- Just start an issue about the problem you met!
2023-05-13 22:48:40 +08:00
## Contact us
2023-05-24 00:57:45 +08:00
Join our chat on [Discord](https://discord.gg/7wNVU65ZDY).
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-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.