English | 中文 ShareLMAPI is a local language model sharing API that uses FastAPI to provide interfaces, allowing different programs or device to share the same local model, thereby reducing resource consumption. It supports streaming generation and various model configuration methods.
- Features
- Installation
- Configuration
- Usage
- Docker Guide
- API Documentation
- Client Usage
- Testing
- Contributing
- License
- Support for multiple model loading methods: default, BitsAndBytes quantization, PEFT
- Support for streaming and non-streaming text generation
- Support for dialogue history and system prompts
- Easy to configure and extend
- Flexible model server URL configuration
git clone https://github.com/starpig1129/ShareLMAPI.git
cd ShareLMAPI
Dependencies can be installed using either Conda or Pip.
Using Conda:
conda env create -f environment.yml
conda activate ShareLMAPI
Using Pip:
pip install -r requirements.txt
If you plan to use it locally, install the package using:
pip install -e .
- Navigate to the
configs
directory and openmodel_config.yaml
. - Modify the configuration according to your needs. You can specify:
- Model name
- Loading method (default, bitsandbytes, or peft)
- Device (CPU or CUDA)
- Other model-specific settings
- Model server URL
Configuration example:
model:
name: "gpt-2"
loading_method: "default"
default:
device: "cuda"
bitsandbytes:
device: "cuda"
quantization_config:
quant_type: "nf4"
load_in_4bit: True
bnb_4bit_quant_type: "nf4"
bnb_4bit_compute_dtype: "float16"
bnb_4bit_use_double_quant: False
peft:
device: "cuda"
peft_type: "lora"
peft_config:
r: 8
lora_alpha: 16
lora_dropout: 0.1
target_modules: ["q_proj", "v_proj"]
model_server:
model_server_url: "http://localhost:5000"
First, start the model server to load and manage the language model:
uvicorn ShareLMAPI.server.model_server:app --host 0.0.0.0 --port 5000
After the model server is running, start the frontend server to handle client requests:
gunicorn -w 4 -k uvicorn.workers.UvicornWorker ShareLMAPI.server.server:app --bind 0.0.0.0:8000
If you want to use Docker to run ShareLMAPI, follow these steps:
Run the following command in the directory containing the Dockerfile to build the Docker image:
docker-compose build
This will create a Docker image named sharelmapi
.
After building, use the following command to run the container:
docker-compose up
This will start the container and map ports 5000 and 8000 from the container to the corresponding ports on the host.
You can now access the API via http://localhost:8000
, just like in a non-Docker environment.
- Ensure that the model settings in your
model_config.yaml
file are suitable for running in a Docker environment. - Consider using Docker volumes if you need to persist data or configurations.
- For large models, ensure your Docker host has sufficient resources (especially GPU support, if needed).
Generate model responses and stream the results.
- Method:
POST
- URL:
http://localhost:8000/generate_stream
- Parameters:
dialogue_history
: List of dialogue messages (optional)prompt
: User input prompt (if dialogue history is not provided)max_length
: Maximum number of tokens to generatetemperature
: Parameter to control generation randomnessgeneration_kwargs
: Other generation parameters (optional)
Generate model responses without streaming.
- Method:
POST
- URL:
http://localhost:8000/generate
- Parameters: Same as
/generate_stream
pip install ShareLMAPI
Here's an example of how to use ShareLMAPI
to call the API:
from ShareLMAPI.client import ShareLMAPIClient
# Create API client
client = ShareLMAPIClient(base_url="http://localhost:8000")
# Streaming generation
for chunk in client.generate_text("Once upon a time", max_length=50, streamer=True):
print(chunk, end='', flush=True)
# Non-streaming generation
response = client.generate_text("What is the capital of France?", max_length=50, streamer=False)
print(response)
# Using dialogue history
dialogue_history = [
{"role": "user", "content": "Hello, who are you?"},
{"role": "assistant", "content": "I'm an AI assistant. How can I help you today?"},
{"role": "user", "content": "Can you explain quantum computing?"}
]
response = client.generate_text(dialogue_history=dialogue_history, max_length=200, streamer=False)
print(response)
Run the following command in the project root directory to execute tests:
pytest -s tests/test_client.py
This will run the tests and display the output results.
Contributions of any form are welcome. Please follow these steps:
- Fork this repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Feature | ShareLMAPI | oLLama |
---|---|---|
Model Focus | Supports a wide variety of models via transformers and PEFT |
Primarily focused on LLaMA models and variants |
Weight Sharing | Yes, models are shared across multiple applications via API, reducing resource usage | No, typically runs single instances of models |
API Architecture | API-first, server-client architecture, flexible model settings | More inference-focused with less emphasis on API |
Model Loading | Supports adaptive loading, BitsAndBytes, and PEFT for efficiency | Optimized for running LLaMA models on local hardware |
Streaming Output | Supports streaming token output for real-time generation | Primarily focused on batch inference |
Multi-Service Support | Designed for sharing models across multiple services and applications | Primarily single-instance model usage |
Customization | Highly customizable, allows dynamic adjustments like max_length , temperature , and other generation parameters |
More limited in customizable API features, tuned for LLaMA |
Target Audience | Developers building multi-service or resource-optimized applications | Researchers and developers using LLaMA models locally |
Deployment | Multi-environment support (Conda, Docker) for seamless deployment and integration | Focuses on providing local deployment of LLaMA models |
Use Case | Multi-client interaction with a centralized language model, resource sharing | Primarily for running LLaMA models on consumer hardware |
This project is open-sourced under the MIT License. See the LICENSE file for more details.
Here are some of my other notable projects:
PigPig: Advanced Multi-modal LLM Discord Bot: A powerful Discord bot based on multi-modal Large Language Models (LLM), designed to interact with users through natural language. It combines advanced AI capabilities with practical features, offering a rich experience for Discord communities.
- GitHub: ai-discord-bot-PigPig
AI-data-analysis-MulitAgent: An AI-powered research assistant system that utilizes multiple specialized agents to assist in tasks such as data analysis, visualization, and report generation. The system employs LangChain, OpenAI's GPT models, and LangGraph to handle complex research processes, integrating diverse AI architectures for optimal performance.
- GitHub: ai-data-analysis-MulitAgent