LLamaSharp/LLama.Web
Martin Evans 2056078aef Initial changes required for GGUF support 2023-08-27 00:14:40 +01:00
..
Common Initial changes required for GGUF support 2023-08-27 00:14:40 +01:00
Hubs Add Instruct and Stateless support 2023-07-23 16:31:28 +12:00
Models WIP demonstrating changes to support multi-context. You can see this in use in `TalkToYourself`, along with notes on what still needs improving. 2023-08-13 01:10:08 +01:00
Pages Add Instruct and Stateless support 2023-07-23 16:31:28 +12:00
Services WIP demonstrating changes to support multi-context. You can see this in use in `TalkToYourself`, along with notes on what still needs improving. 2023-08-13 01:10:08 +01:00
wwwroot Add Instruct and Stateless support 2023-07-23 16:31:28 +12:00
LLama.Web.csproj Basic ASP.NET Core website example, Interactive started 2023-07-16 19:31:27 +12:00
Program.cs Add Instruct and Stateless support 2023-07-23 16:31:28 +12:00
README.md Update Readme 2023-07-16 20:05:21 +12:00
appsettings.Development.json Basic ASP.NET Core website example, Interactive started 2023-07-16 19:31:27 +12:00
appsettings.json Add Instruct and Stateless support 2023-07-23 16:31:28 +12:00

README.md

LLama.Web - Basic ASP.NET Core examples of LLamaSharp in action

LLama.Web has no heavy dependencies and no extra frameworks ove bootstrap and jquery to keep the examples clean and easy to copy over to your own project

Websockets

Using signalr websockets simplifys the streaming of responses and model per connection management

Setup

You can setup Models, Prompts and Inference parameters in the appsettings.json

Models You can add multiple models to the options for quick selection in the UI, options are based on ModelParams so its fully configurable

Parameters You can add multiple sets of inference parameters to the options for quick selection in the UI, options are based on InferenceParams so its fully configurable

Prompts You can add multiple sets of prompts to the options for quick selection in the UI

Example:

 {
        "Name": "Alpaca",
        "Path": "D:\\Repositories\\AI\\Prompts\\alpaca.txt",
        "Prompt": "Alternativly to can set a prompt text directly and omit the Path"
        "AntiPrompt": [
          "User:"
        ],
        "OutputFilter": [
          "Response:",
          "User:"
        ]
  }

Interactive UI

The interactive UI is a simple example of using LLammaSharp demo-ui