Text Generation
Transformers
Safetensors
English
chatglm
feature-extraction
llm
glm
glm4
llama
chat
instruct
it
abliterated
longwriter
long context
conversational
custom_code
Instructions to use byroneverson/LongWriter-glm4-9b-abliterated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use byroneverson/LongWriter-glm4-9b-abliterated with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="byroneverson/LongWriter-glm4-9b-abliterated", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("byroneverson/LongWriter-glm4-9b-abliterated", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use byroneverson/LongWriter-glm4-9b-abliterated with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "byroneverson/LongWriter-glm4-9b-abliterated" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "byroneverson/LongWriter-glm4-9b-abliterated", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/byroneverson/LongWriter-glm4-9b-abliterated
- SGLang
How to use byroneverson/LongWriter-glm4-9b-abliterated with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "byroneverson/LongWriter-glm4-9b-abliterated" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "byroneverson/LongWriter-glm4-9b-abliterated", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "byroneverson/LongWriter-glm4-9b-abliterated" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "byroneverson/LongWriter-glm4-9b-abliterated", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use byroneverson/LongWriter-glm4-9b-abliterated with Docker Model Runner:
docker model run hf.co/byroneverson/LongWriter-glm4-9b-abliterated
LongWriter-glm4-9b-abliterated
Now accepting abliteration requests. If you would like to see a model abliterated, follow me and leave me a message with model link.
Check out the jupyter notebook for details of how this model was abliterated.
- Downloads last month
- 30
