You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 12 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. ![logo](Assets/LLamaSharpLogo.png)
  2. [![Discord](https://img.shields.io/discord/1106946823282761851?label=Discord)](https://discord.gg/7wNVU65ZDY)
  3. [![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)
  4. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp?label=LLamaSharp)](https://www.nuget.org/packages/LLamaSharp)
  5. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cpu?label=LLamaSharp.Backend.Cpu)](https://www.nuget.org/packages/LLamaSharp.Backend.Cpu)
  6. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cuda11?label=LLamaSharp.Backend.Cuda11)](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda11)
  7. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cuda12?label=LLamaSharp.Backend.Cuda12)](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda12)
  8. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.semantic-kernel?label=LLamaSharp.semantic-kernel)](https://www.nuget.org/packages/LLamaSharp.semantic-kernel)
  9. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.kernel-memory?label=LLamaSharp.kernel-memory)](https://www.nuget.org/packages/LLamaSharp.kernel-memory)
  10. **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 Windows, Linux and Mac without need to compile llama.cpp yourself. Even without a GPU or not enough GPU memory, you can still use LLaMA models! 🤗**
  11. **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.**
  12. **Discussions about the roadmap to v1.0.0: [#287](https://github.com/SciSharp/LLamaSharp/issues/287)**
  13. <details>
  14. <summary>Table of Contents</summary>
  15. <ul>
  16. <li><a href="#Documentation">Documentation</a></li>
  17. <li><a href="#Examples">Examples</a></li>
  18. <li><a href="#Installation">Installation</a></li>
  19. <li>
  20. <a href="#(Quick Start)">Quick Start</a>
  21. <ul>
  22. <li><a href="#Model Inference and Chat Session">Model Inference and Chat Session</a></li>
  23. <li><a href="#Quantization">Quantization</a></li>
  24. <li><a href="#Web API">Web API</a></li>
  25. </ul>
  26. </li>
  27. <li><a href="#Features">Features</a></li>
  28. <li><a href="#Console Demo">Console Demo</a></li>
  29. <li><a href="#FAQ">FAQ</a></li>
  30. <li><a href="#Contributing">Contributing</a></li>
  31. <li><a href="#Contact us">Contact us</a></li>
  32. <li>
  33. <a href="#Appendix">Appendix</a>
  34. <ul>
  35. <li><a href="#LLamaSharp and llama.cpp versions">LLamaSharp and llama.cpp versions</a></li>
  36. </ul>
  37. </li>
  38. </ul>
  39. </details>
  40. ## Documentation
  41. - [Quick start](https://scisharp.github.io/LLamaSharp/latest/GetStarted/)
  42. - [Tricks for FAQ](https://scisharp.github.io/LLamaSharp/latest/Tricks/)
  43. - [Full documentation](https://scisharp.github.io/LLamaSharp/latest/)
  44. - [API reference](https://scisharp.github.io/LLamaSharp/latest/xmldocs/)
  45. ## Examples
  46. - [Official Console Examples](./LLama.Examples/)
  47. - [Unity Demo](https://github.com/eublefar/LLAMASharpUnityDemo)
  48. - [LLamaStack (with WPF and Web support)](https://github.com/saddam213/LLamaStack)
  49. ## Installation
  50. 1. Install [`LLamaSharp`](https://www.nuget.org/packages/LLamaSharp) package in NuGet:
  51. ```
  52. PM> Install-Package LLamaSharp
  53. ```
  54. 2. Install **one** of these backends:
  55. - [`LLamaSharp.Backend.Cpu`](https://www.nuget.org/packages/LLamaSharp.Backend.Cpu): Pure CPU for Windows & Linux. Metal for Mac.
  56. - [`LLamaSharp.Backend.Cuda11`](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda11): CUDA11 for Windows and Linux
  57. - [`LLamaSharp.Backend.Cuda12`](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda12)@ CUDA 12 for Windows and Linux
  58. - If none of these backends is suitable you can compile [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. If you do this you must use exactly the correct llama.cpp commit, refer to the version table further down.
  59. 3. (optional) For [Microsoft semantic-kernel](https://github.com/microsoft/semantic-kernel) integration, install the [LLamaSharp.semantic-kernel](https://www.nuget.org/packages/LLamaSharp.semantic-kernel) package.
  60. 4. (optional) For [Microsoft kernel-memory](https://github.com/microsoft/kernel-memory) integration, install the [LLamaSharp.kernel-memory](https://www.nuget.org/packages/LLamaSharp.kernel-memory) package (this package currently only supports `net6.0`).
  61. ### Tips for choosing a version
  62. Llama.cpp is a fast moving project with frequent breaking changes, therefore breaking changes are expected frequently in LLamaSharp. LLamaSharp follows [semantic versioning](https://semver.org/) and will not introduce breaking API changes on patch versions.
  63. It is suggested to update to the latest patch version as soon as it is released, and to update to new major versions as soon as possible.
  64. ## Quick Start
  65. #### Model Inference and Chat Session
  66. 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.
  67. ```cs
  68. using LLama.Common;
  69. using LLama;
  70. string modelPath = "<Your model path>"; // change it to your own model path
  71. 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.
  72. // Load a model
  73. var parameters = new ModelParams(modelPath)
  74. {
  75. ContextSize = 1024,
  76. Seed = 1337,
  77. GpuLayerCount = 5
  78. };
  79. using var model = LLamaWeights.LoadFromFile(parameters);
  80. // Initialize a chat session
  81. using var context = model.CreateContext(parameters);
  82. var ex = new InteractiveExecutor(context);
  83. ChatSession session = new ChatSession(ex);
  84. // show the prompt
  85. Console.WriteLine();
  86. Console.Write(prompt);
  87. // run the inference in a loop to chat with LLM
  88. while (prompt != "stop")
  89. {
  90. await foreach (var text in session.ChatAsync(new ChatHistory.Message(AuthorRole.User, prompt), new InferenceParams { Temperature = 0.6f, AntiPrompts = [ "User:" ] }))
  91. {
  92. Console.Write(text);
  93. }
  94. prompt = Console.ReadLine() ?? "";
  95. }
  96. // save the session
  97. session.SaveSession("SavedSessionPath");
  98. ```
  99. #### Quantization
  100. The following example shows how to quantize the model:
  101. ```cs
  102. string srcFilename = "<Your source path>";
  103. string dstFilename = "<Your destination path>";
  104. string ftype = "q4_0";
  105. if(Quantizer.Quantize(srcFileName, dstFilename, ftype))
  106. {
  107. Console.WriteLine("Quantization succeed!");
  108. }
  109. else
  110. {
  111. Console.WriteLine("Quantization failed!");
  112. }
  113. ```
  114. For more usage, please refer to [Examples](./LLama.Examples).
  115. #### Web API
  116. We provide [an integration with ASP.NET core](./LLama.WebAPI) and a [web app demo](./LLama.Web). 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.
  117. ## Features
  118. ---
  119. ✅: completed. ⚠️: outdated for latest release but will be updated. 🔳: not completed
  120. ---
  121. ✅ LLaMa model inference<br />
  122. ✅ Embeddings generation, tokenization and detokenization<br />
  123. ✅ Chat session<br />
  124. ✅ Quantization<br />
  125. ✅ Grammar<br />
  126. ✅ State saving and loading<br />
  127. ⚠️ BotSharp Integration<br />
  128. ✅ ASP.NET core Integration<br />
  129. ✅ Semantic-kernel Integration<br />
  130. 🔳 Fine-tune<br />
  131. ✅ Local document search (enabled by kernel-memory)<br />
  132. 🔳 MAUI Integration<br />
  133. ## Console Demo
  134. ![demo-console](Assets/console_demo.gif)
  135. ## FAQ
  136. 1. GPU out of memory: Please try setting `n_gpu_layers` to a smaller number.
  137. 2. Unsupported model: `llama.cpp` is under quick development and often has breaking 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.
  138. 3. Cannot load native library:
  139. - Ensure you have installed one of the backend packages.
  140. - Run `NativeLibraryConfig.WithLogs()` at the very beginning of your code to print more information.
  141. 4. Models in GGUF format are compatible with LLamaSharp. It's a good idea to search for [`gguf` on huggingface](https://huggingface.co/models?search=gguf) to find a model. Another choice is generate a GGUF format file yourself, please refer to [convert.py](https://github.com/ggerganov/llama.cpp/blob/master/convert.py) for more information.
  142. ## Contributing
  143. 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 interesting one to start. Please read the [contributing guide](https://scisharp.github.io/LLamaSharp/latest/ContributingGuide/) for more information.
  144. You can also do one of the followings to help us make LLamaSharp better:
  145. - Submit a feature request.
  146. - Star and share LLamaSharp to let others know it.
  147. - Write a blog or demo about LLamaSharp.
  148. - Help to develop Web API and UI integration.
  149. - Just open an issue about the problem you met!
  150. ## Contact us
  151. Join our chat on [Discord](https://discord.gg/7wNVU65ZDY) (please contact Rinne to join the dev channel if you want to be a contributor).
  152. Join [QQ group](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=sN9VVMwbWjs5L0ATpizKKxOcZdEPMrp8&authKey=RLDw41bLTrEyEgZZi%2FzT4pYk%2BwmEFgFcrhs8ZbkiVY7a4JFckzJefaYNW6Lk4yPX&noverify=0&group_code=985366726)
  153. ## Appendix
  154. ### LLamaSharp and llama.cpp versions
  155. If you want to compile llama.cpp yourself you **must** use the exact commit ID listed for each version.
  156. | LLamaSharp | Verified Model Resources | llama.cpp commit id |
  157. | - | -- | - |
  158. | v0.2.0 | This version is not recommended to use. | - |
  159. | 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) | - |
  160. | 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` |
  161. | 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` |
  162. | 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` |
  163. |v0.4.2-preview | [Llama2 7B (GGML)](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGML)| `3323112` |
  164. | v0.5.1 | [Llama2 7B (GGUF)](https://huggingface.co/TheBloke/llama-2-7B-Guanaco-QLoRA-GGUF)| `6b73ef1` |
  165. | v0.6.0 | | [`cb33f43`](https://github.com/ggerganov/llama.cpp/commit/cb33f43a2a9f5a5a5f8d290dd97c625d9ba97a2f) |
  166. | 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) |
  167. | v0.8.1 | | [`e937066`](https://github.com/ggerganov/llama.cpp/commit/e937066420b79a757bf80e9836eb12b88420a218) |
  168. | v0.9.0, v0.9.1 | [Mixtral-8x7B](https://huggingface.co/TheBloke/Mixtral-8x7B-v0.1-GGUF) | [`9fb13f9`](https://github.com/ggerganov/llama.cpp/blob/9fb13f95840c722ad419f390dc8a9c86080a3700) |
  169. ## License
  170. This project is licensed under the terms of the MIT license.