Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hyperonym/basaran
Basaran is an open-source alternative to the OpenAI text completion API. It provides a compatible streaming API for your Hugging Face Transformers-based text generation models.
https://github.com/hyperonym/basaran
generative gpt huggingface language-model llama llm model natural-language-processing nlp openai-api python text-generation transformers
Last synced: 3 months ago
JSON representation
Basaran is an open-source alternative to the OpenAI text completion API. It provides a compatible streaming API for your Hugging Face Transformers-based text generation models.
- Host: GitHub
- URL: https://github.com/hyperonym/basaran
- Owner: hyperonym
- License: mit
- Archived: true
- Created: 2023-02-17T17:22:29.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-24T05:50:55.000Z (11 months ago)
- Last Synced: 2024-05-01T09:38:45.145Z (8 months ago)
- Topics: generative, gpt, huggingface, language-model, llama, llm, model, natural-language-processing, nlp, openai-api, python, text-generation, transformers
- Language: Python
- Homepage:
- Size: 5.37 MB
- Stars: 1,285
- Watchers: 22
- Forks: 82
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Citation: CITATION.cff
Awesome Lists containing this project
- awesome-open-chatgpt - Basaran
- awesome-totally-open-chatgpt - Basaran
- awesome-ChatGPT-repositories - basaran - Basaran is an open-source alternative to the OpenAI text completion API. It provides a compatible streaming API for your Hugging Face Transformers-based text generation models. (Langchain)
- StarryDivineSky - hyperonym/basaran
README
# Basaran
[![Python](https://github.com/hyperonym/basaran/actions/workflows/python.yml/badge.svg)](https://github.com/hyperonym/basaran/actions/workflows/python.yml)
[![codecov](https://codecov.io/gh/hyperonym/basaran/branch/master/graph/badge.svg?token=8HUSH6HSAN)](https://codecov.io/gh/hyperonym/basaran)
[![PyPI](https://img.shields.io/pypi/v/basaran)](https://pypi.org/project/basaran/)
[![Status](https://img.shields.io/badge/status-beta-blue)](https://github.com/hyperonym/basaran)Basaran is an open-source alternative to the [OpenAI text completion API](https://platform.openai.com/docs/api-reference/completions/create). It provides a compatible streaming API for your [Hugging Face Transformers](https://huggingface.co/docs/transformers/index)-based [text generation models](https://huggingface.co/models?pipeline_tag=text-generation).
The open source community will eventually witness the [Stable Diffusion](https://stability.ai/blog/stable-diffusion-public-release) moment for large language models (LLMs), and Basaran allows you to replace OpenAI's service with the latest open-source model to power your application [without modifying a single line of code](https://github.com/hyperonym/basaran/blob/master/README.md#openai-client-library).
The key features of Basaran are:
* Streaming generation using various decoding strategies.
* Support for both decoder-only and encoder-decoder models.
* Detokenizer that handles surrogates and whitespace.
* Multi-GPU support with optional quantization.
* Real-time partial progress using [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format).
* Compatibility with OpenAI API and client libraries.
* Comes with a fancy web-based playground!## Quick Start
### TL;DR
Replace `user/repo` with your [selected model](https://huggingface.co/models?pipeline_tag=text-generation) and `X.Y.Z` with the [latest version](https://hub.docker.com/r/hyperonym/basaran/tags), then run:
```bash
docker run -p 80:80 -e MODEL=user/repo hyperonym/basaran:X.Y.Z
```And you're good to go! ๐
```
Playground: http://127.0.0.1/
API: http://127.0.0.1/v1/completions
```### Installation
#### Using Docker (Recommended)
Docker images are available on [Docker Hub](https://hub.docker.com/r/hyperonym/basaran/tags) and [GitHub Packages](https://github.com/orgs/hyperonym/packages?repo_name=basaran).
For GPU acceleration, you also need to install the [NVIDIA Driver](https://docs.nvidia.com/datacenter/tesla/tesla-installation-notes/index.html) and [NVIDIA Container Runtime](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html). Basaran's image already comes with related libraries such as CUDA and cuDNN, so there is no need to install them manually.
Basaran's image can be used in three ways:
* **Run directly**: By specifying the `MODEL="user/repo"` environment variable, the corresponding model can be downloaded from Hugging Face Hub during the first startup.
* **Bundling**: Create a new Dockerfile to [preload a public model](https://github.com/hyperonym/basaran/blob/master/deployments/bundle/bloomz-560m.Dockerfile) or [bundle a private model](https://github.com/hyperonym/basaran/blob/master/deployments/bundle/private.Dockerfile).
* **Bind mount**: Mount a model from the local file system into the container and point the `MODEL` environment variable to the corresponding path.For the above use cases, you can find sample [Dockerfiles](https://github.com/hyperonym/basaran/tree/master/deployments/bundle) and [docker-compose files](https://github.com/hyperonym/basaran/tree/master/deployments/compose) in the [deployments directory](https://github.com/hyperonym/basaran/tree/master/deployments).
#### Using pip
Basaran is tested on Python 3.8+ and PyTorch 1.13+. You should create a [virtual environment](https://docs.python.org/3/library/venv.html) with the version of Python you want to use, and activate it before proceeding.
1. Install with `pip`:
```bash
pip install basaran
```2. Install dependencies required for GPU acceleration (optional):
```bash
pip install accelerate bitsandbytes
```3. Replace `user/repo` with the selected model and run Basaran:
```bash
MODEL=user/repo PORT=80 python -m basaran
```For a complete list of environment variables, see [`__init__.py`](https://github.com/hyperonym/basaran/blob/master/basaran/__init__.py).
#### Running From Source
If you want to access the latest features or hack it yourself, you can choose to run from source using `git`.
1. Clone the repository:
```bash
git clone https://github.com/hyperonym/basaran.git && cd basaran
```2. Install dependencies:
```bash
pip install -r requirements.txt
```3. Replace `user/repo` with the selected model and run Basaran:
```bash
MODEL=user/repo PORT=80 python -m basaran
```### Basic Usage
#### cURL
Basaran's HTTP request and response formats are consistent with the [OpenAI API](https://platform.openai.com/docs/api-reference).
Taking [text completion](https://platform.openai.com/docs/api-reference/completions/create) as an example:
```bash
curl http://127.0.0.1/v1/completions \
-H 'Content-Type: application/json' \
-d '{ "prompt": "once upon a time,", "echo": true }'
```Example response
```json
{
"id": "cmpl-e08c701b4ba032c09ef080e1",
"object": "text_completion",
"created": 1678003509,
"model": "bigscience/bloomz-560m",
"choices": [
{
"text": "once upon a time, the human being faces a complicated situation and he needs to find a new life.",
"index": 0,
"logprobs": null,
"finish_reason": "length"
}
],
"usage": {
"prompt_tokens": 5,
"completion_tokens": 21,
"total_tokens": 26
}
}
```#### OpenAI Client Library
If your application uses [client libraries](https://github.com/openai/openai-python) provided by OpenAI, you only need to modify the `OPENAI_API_BASE` environment variable to match Basaran's endpoint:
```bash
OPENAI_API_BASE="http://127.0.0.1/v1" python your_app.py
```The [examples](https://github.com/hyperonym/basaran/tree/master/examples) directory contains examples of [using the OpenAI Python library](https://github.com/hyperonym/basaran/blob/master/examples/openai-python-library/main.py).
#### Using as a Python Library
Basaran is also available as a library on [PyPI](https://pypi.org/project/basaran/). It can be used directly in Python without the need to start a separate API server.
1. Install with `pip`:
```bash
pip install basaran
```2. Use the `load_model` function to load a model:
```python
from basaran.model import load_modelmodel = load_model("user/repo")
```3. Generate streaming output by calling the model:
```python
for choice in model("once upon a time"):
print(choice)
```The [examples](https://github.com/hyperonym/basaran/tree/master/examples) directory contains examples of [using Basaran as a library](https://github.com/hyperonym/basaran/blob/master/examples/basaran-python-library/main.py).
## Compatibility
Basaran's API format is consistent with OpenAI's, with differences in compatibility mainly in terms of parameter support and response fields. The following sections provide detailed information on the compatibility of each endpoint.
### Models
Each Basaran process serves only one model, so the result will only contain that model.
### Completions
Although Basaran does not support the `model` parameter, the OpenAI client library requires it to be present. Therefore, you can enter any random model name.
| Parameter | Basaran | OpenAI | Default Value | Maximum Value |
| --- | --- | --- | --- | --- |
| `model` | โ | โ | - | - |
| `prompt` | โ | โ | `""` | `COMPLETION_MAX_PROMPT` |
| `suffix` | โ | โ | - | - |
| `min_tokens` | โ | โ | `0` | `COMPLETION_MAX_TOKENS` |
| `max_tokens` | โ | โ | `16` | `COMPLETION_MAX_TOKENS` |
| `temperature` | โ | โ | `1.0` | - |
| `top_p` | โ | โ | `1.0` | - |
| `n` | โ | โ | `1` | `COMPLETION_MAX_N` |
| `stream` | โ | โ | `false` | - |
| `logprobs` | โ | โ | `0` | `COMPLETION_MAX_LOGPROBS` |
| `echo` | โ | โ | `false` | - |
| `stop` | โ | โ | - | - |
| `presence_penalty` | โ | โ | - | - |
| `frequency_penalty` | โ | โ | - | - |
| `best_of` | โ | โ | - | - |
| `logit_bias` | โ | โ | - | - |
| `user` | โ | โ | - | - |### Chat
Providing a unified chat API is currently difficult because each model has a different format for chat history.
Therefore, it is recommended to pre-format the chat history based on the requirements of the specific model and use it as the prompt for the completion API.
#### [GPT-NeoXT-Chat-Base-20B](https://huggingface.co/togethercomputer/GPT-NeoXT-Chat-Base-20B)
```
**Summarize a long document into a single sentence and ...**: Last year, the travel industry saw a big ...
: If you're traveling this spring break, ...
: But ...
:
```#### [chatglm-6b](https://huggingface.co/THUDM/chatglm-6b)
```
[Round 0]
้ฎ๏ผไฝ ๅฅฝ
็ญ๏ผไฝ ๅฅฝ!ๆไปไนๆๅฏไปฅๅธฎๅฉไฝ ็ๅ?
[Round 1]
้ฎ๏ผไฝ ๆฏ่ฐ๏ผ
็ญ๏ผ
```## Roadmap
- [x] API
- [x] Models
- [x] List models
- [x] Retrieve model
- [x] Completions
- [x] Create completion
- [ ] Chat
- [ ] Create chat completion
- [x] Model
- [x] Architectures
- [x] Encoder-decoder
- [x] Decoder-only
- [x] Decoding strategies
- [x] Random sampling with temperature
- [x] Nucleus-sampling (top-p)
- [ ] Stop sequences
- [ ] Presence and frequency penaltiesSee the [open issues](https://github.com/hyperonym/basaran/issues) for a full list of proposed features.
## Contributing
This project is open-source. If you have any ideas or questions, please feel free to reach out by creating an issue!
Contributions are greatly appreciated, please refer to [CONTRIBUTING.md](https://github.com/hyperonym/basaran/blob/master/CONTRIBUTING.md) for more information.
## License
Basaran is available under the [MIT License](https://github.com/hyperonym/basaran/blob/master/LICENSE).
---
ยฉ 2023 [Hyperonym](https://hyperonym.org)