Text Generation
Transformers
PyTorch
Safetensors
English
gpt2
conversational
text-generation-inference
Instructions to use jesseD/homer-bot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jesseD/homer-bot with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="jesseD/homer-bot") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("jesseD/homer-bot") model = AutoModelForCausalLM.from_pretrained("jesseD/homer-bot", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use jesseD/homer-bot with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jesseD/homer-bot" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jesseD/homer-bot", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/jesseD/homer-bot
- SGLang
How to use jesseD/homer-bot 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 "jesseD/homer-bot" \ --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": "jesseD/homer-bot", "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 "jesseD/homer-bot" \ --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": "jesseD/homer-bot", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use jesseD/homer-bot with Docker Model Runner:
docker model run hf.co/jesseD/homer-bot
Commit History
Update README.md bbd1433
add model 865370a
add tokenizer 2796466
add model 37000a1
add tokenizer 44b5694
add model cba3463
add tokenizer 6ddf58f
add model 1b95e29
add model af9e6de
add model 7b2dd49
add model 9e24c66
add model e4f4890
add model a06bf09
add model 599f3e2
add tokenizer e388917
add model 1e55681
add model 9fffbe4
DingleyMaillotUrgell commited on