]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commit
server: update README.md with llama-server --help output [no ci] (#8472)
authorM-A <redacted>
Mon, 15 Jul 2024 12:04:56 +0000 (08:04 -0400)
committerGitHub <redacted>
Mon, 15 Jul 2024 12:04:56 +0000 (15:04 +0300)
commitf17f39ff9cb71fa7b0eda0c649bb0ce9b2d8a6b8
treeb8eaa092c35aed14fb490d1976e404011558c1a2
parent9104bc20edf47f74dc49379b7d61d0c6e85a4882
server: update README.md with llama-server --help output [no ci] (#8472)

The README.md had a stale information. In particular, the --ctx-size
"defaults to 512" confused me and I had to check the code to confirm
this was false. This the server is evolving rapidly, it's probably
better to keep the source of truth at a single place (in the source) and
generate the README.md based on that.

Did:

    make llama-server
    ./llama-server --help > t.txt
    vimdiff t.txt examples/server/README.md

I copied the content inside a backquote block. I would have preferred
proper text but it would require a fair amount of surgery to make the
current output compatible with markdown. A follow up could be to
automate this process with a script.

No functional change.
examples/server/README.md