]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commit
Server Example Refactor and Improvements (#1570)
authorRandall Fitzgerald <redacted>
Sat, 17 Jun 2023 11:53:04 +0000 (07:53 -0400)
committerGitHub <redacted>
Sat, 17 Jun 2023 11:53:04 +0000 (14:53 +0300)
commit794db3e7b982fee37e3995db9c3a216a57ff65e3
tree30d9a85590c6e7443e18bcd766f42c08a4303f07
parent5ddf7ea1fb42bac21026de2f77e0f9c069b92234
Server Example Refactor and Improvements (#1570)

A major rewrite for the server example.

Note that if you have built something on the previous server API, it will probably be incompatible.
Check out the examples for how a typical chat app could work.

This took a lot of effort, there are 24 PR's closed in the submitter's repo alone, over 160 commits and a lot of comments and testing.

Summary of the changes:

- adds missing generation parameters: tfs_z, typical_p, repeat_last_n, repeat_penalty, presence_penalty, frequency_penalty, mirostat, penalize_nl, seed, ignore_eos
- applies missing top k sampler
- removes interactive mode/terminal-like behavior, removes exclude parameter
- moves threads and batch size to server command-line parameters
- adds LoRA loading and matches command line parameters with main example
- fixes stopping on EOS token and with the specified token amount with n_predict
- adds server timeouts, host, and port settings
- adds expanded generation complete response; adds generation settings, stop reason, prompt truncated, model used, and final text
- sets defaults for unspecified parameters between requests
- removes /next-token endpoint and as_loop parameter, adds stream parameter and server-sent events for streaming
- adds CORS headers to responses
- adds request logging, exception printing and optional verbose logging
- adds better stopping words handling when matching multiple tokens and while streaming, or when it finishes on a partial stop string
- adds printing an error when it can't bind to the host/port specified
- fixes multi-byte character handling and replaces invalid UTF-8 characters on responses
- prints timing and build info on startup
- adds logit bias to request parameters
- removes embedding mode
- updates documentation; adds streaming Node.js and Bash examples
- fixes code formatting
- sets server threads to 1 since the current global state doesn't work well with simultaneous requests
- adds truncation of the input prompt and better context reset
- removes token limit from the input prompt
- significantly simplified the logic and removed a lot of variables

---------

Co-authored-by: anon998 <redacted>
Co-authored-by: Henri Vasserman <redacted>
Co-authored-by: Felix Hellmann <redacted>
Co-authored-by: Johannes Gäßler <redacted>
Co-authored-by: Lesaun Harvey <redacted>
.gitignore
Makefile
examples/server/CMakeLists.txt
examples/server/README.md
examples/server/chat.mjs [new file with mode: 0644]
examples/server/chat.sh [new file with mode: 0644]
examples/server/server.cpp