Text Generation
Transformers
PyTorch
Safetensors
English
mistral
Vidyut
Rapnss
conversational
text-generation-inference
Instructions to use Rapnss/VIA-01 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Rapnss/VIA-01 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Rapnss/VIA-01") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Rapnss/VIA-01", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Rapnss/VIA-01 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Rapnss/VIA-01" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Rapnss/VIA-01", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Rapnss/VIA-01
- SGLang
How to use Rapnss/VIA-01 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 "Rapnss/VIA-01" \ --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": "Rapnss/VIA-01", "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 "Rapnss/VIA-01" \ --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": "Rapnss/VIA-01", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Rapnss/VIA-01 with Docker Model Runner:
docker model run hf.co/Rapnss/VIA-01
Invescoz Softwares commited on
Create model_loader.py
Browse files- model_loader.py +24 -0
model_loader.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from tools.code_generator import generate_code
|
| 2 |
+
from tools.web_search import search_web
|
| 3 |
+
from tools.rag_engine import answer_from_docs
|
| 4 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 5 |
+
import torch
|
| 6 |
+
|
| 7 |
+
# Default general model (TinyLlama)
|
| 8 |
+
tokenizer = AutoTokenizer.from_pretrained("TinyLlama/TinyLlama-1.1B-Chat-v1.0")
|
| 9 |
+
model = AutoModelForCausalLM.from_pretrained("TinyLlama/TinyLlama-1.1B-Chat-v1.0")
|
| 10 |
+
model.eval()
|
| 11 |
+
|
| 12 |
+
def route_query(prompt):
|
| 13 |
+
prompt_lower = prompt.lower()
|
| 14 |
+
|
| 15 |
+
if "code:" in prompt_lower:
|
| 16 |
+
return generate_code(prompt)
|
| 17 |
+
elif "search:" in prompt_lower:
|
| 18 |
+
return search_web(prompt)
|
| 19 |
+
elif "doc:" in prompt_lower:
|
| 20 |
+
return answer_from_docs(prompt)
|
| 21 |
+
else:
|
| 22 |
+
inputs = tokenizer(prompt, return_tensors="pt")
|
| 23 |
+
outputs = model.generate(**inputs, max_new_tokens=200)
|
| 24 |
+
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|