serve your llm
Project description
svllm
Create a OpenAI-Compatible API Server for your LLM.
Usage
Install
$ pip install svllm
Prepare
svllm provided following HTTP APIs:
- chat:
/v1/chat/completions - complete:
/v1/completions - embed:
/v1/embeddings - models:
/v1/models
You only need to implement the chat, complete, embed function (or part of them).
Set __model__, __owner__ for these functions can affect /v1/models API.
See src/protocol.py for more information.
Then you can use svllm in the following two ways:
CLI
If you have a demo.py file that implements a chat function, you can start it like this:
$ svllm --chat demo:chat
$ svllm-cli # client
Run svllm --help and svllm-cli --help for more information.
Code
You can also use svllm as a library. (also see demo.py)
import uvicorn
import svllm
if __name__ == '__main__':
svllm.set_chat(svllm.examples.chat)
svllm.set_complete(svllm.examples.complete)
svllm.set_embed(svllm.examples.embed)
app = svllm.create_app()
uvicorn.run(app, host='0.0.0.0', port=5261)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file svllm-0.1.3.tar.gz.
File metadata
- Download URL: svllm-0.1.3.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f5450063367012fa8783c3dfd460bc9bed8736098e64b5198059a0a82d2f905
|
|
| MD5 |
5c38c674a33096b2fe5d46cadee96c1d
|
|
| BLAKE2b-256 |
7cca0d7a87b17c19bf39d2d8b11278347c6700f07dbddd669e3e6a4d24fd7f25
|
File details
Details for the file svllm-0.1.3-py3-none-any.whl.
File metadata
- Download URL: svllm-0.1.3-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f8b0679e33fde87fbb0b5b36356fb9167e40f361221f846ebbe7d5038abc6f1
|
|
| MD5 |
1c535a7f4d06070a47dcb5d706024231
|
|
| BLAKE2b-256 |
3745ee4c62d8927be03261b07bb91580f9ca143f9b161ce0c44628b1fcf7bcab
|