Text Generation
Transformers
Safetensors
English
mistral
conversational-ai
chatbot
emotional-intelligence
friend
text-generation-inference
Instructions to use CaptMetal/BuddAi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CaptMetal/BuddAi with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CaptMetal/BuddAi")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("CaptMetal/BuddAi") model = AutoModelForCausalLM.from_pretrained("CaptMetal/BuddAi", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use CaptMetal/BuddAi with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CaptMetal/BuddAi" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CaptMetal/BuddAi", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/CaptMetal/BuddAi
- SGLang
How to use CaptMetal/BuddAi 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 "CaptMetal/BuddAi" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CaptMetal/BuddAi", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "CaptMetal/BuddAi" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CaptMetal/BuddAi", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use CaptMetal/BuddAi with Docker Model Runner:
docker model run hf.co/CaptMetal/BuddAi
Update tokenizergen.py
Browse files- tokenizergen.py +8 -5
tokenizergen.py
CHANGED
|
@@ -1,6 +1,9 @@
|
|
| 1 |
-
from transformers import AutoTokenizer
|
| 2 |
|
| 3 |
-
|
| 4 |
-
tokenizer = AutoTokenizer.from_pretrained(
|
| 5 |
-
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 2 |
|
| 3 |
+
model_id = "teknium/OpenHermes-2.5-Mistral-7B"
|
| 4 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 5 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 6 |
+
|
| 7 |
+
# Save to BuddAi/
|
| 8 |
+
model.save_pretrained("BuddAi", safe_serialization=True) # Creates model.safetensors
|
| 9 |
+
tokenizer.save_pretrained("BuddAi") # Creates tokenizer files
|