-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(models-http-api): add llamafile example
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# llamafile | ||
|
||
[llamafile](https://github.com/Mozilla-Ocho/llamafile) | ||
is a Mozilla Builders project that allows you to distribute and run LLMs with a single file. | ||
|
||
llamafile provides an OpenAI API-compatible chat-completions and embedding endpoint, | ||
enabling us to use the OpenAI kinds for chat and embeddings. | ||
|
||
However, for completion, there are certain differences in the implementation, and we are still working on it. | ||
|
||
llamafile uses port `8080` by default, which is also the port used by Tabby. | ||
Therefore, it is recommended to run llamafile with the `--port` option to serve on a different port, such as `8081`. | ||
|
||
Below is an example for chat: | ||
|
||
```toml title="~/.tabby/config.toml" | ||
# Chat model | ||
[model.chat.http] | ||
kind = "openai/chat" | ||
model_name = "your_model" | ||
api_endpoint = "http://localhost:8081/v1" | ||
api_key = "" | ||
``` | ||
|
||
For embeddings, the embedding endpoint is no longer supported in the standard llamafile server, | ||
so you have to run llamafile with the `--embedding` option and set the Tabby config to: | ||
|
||
```toml title="~/.tabby/config.toml" | ||
# Embedding model | ||
[model.embedding.http] | ||
kind = "openai/embedding" | ||
model_name = "your_model" | ||
api_endpoint = "http://localhost:8082/v1" | ||
api_key = "" | ||
``` |