OralGPT-Omni: A Versatile Dental Multimodal Large Language Model
Paper β’ 2511.22055 β’ Published β’ 9
How to use OralGPT/OralGPT-Omni-7B-Instruct with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-text-to-text", model="OralGPT/OralGPT-Omni-7B-Instruct") # Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM
processor = AutoProcessor.from_pretrained("OralGPT/OralGPT-Omni-7B-Instruct")
model = AutoModelForMultimodalLM.from_pretrained("OralGPT/OralGPT-Omni-7B-Instruct")How to use OralGPT/OralGPT-Omni-7B-Instruct with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "OralGPT/OralGPT-Omni-7B-Instruct"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "OralGPT/OralGPT-Omni-7B-Instruct",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/OralGPT/OralGPT-Omni-7B-Instruct
How to use OralGPT/OralGPT-Omni-7B-Instruct with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "OralGPT/OralGPT-Omni-7B-Instruct" \
--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": "OralGPT/OralGPT-Omni-7B-Instruct",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "OralGPT/OralGPT-Omni-7B-Instruct" \
--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": "OralGPT/OralGPT-Omni-7B-Instruct",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use OralGPT/OralGPT-Omni-7B-Instruct with Docker Model Runner:
docker model run hf.co/OralGPT/OralGPT-Omni-7B-Instruct
π Paper: https://arxiv.org/abs/2511.22055
π¦ Model configuration
model_name_or_path: OralGPT/OralGPT-Omni-7B-Instruct
template: qwen2_vl
infer_backend: huggingface # choices: [huggingface, vllm, sglang]
trust_remote_code: true
π Dtart inference API
API_PORT=8001 llamafactory-cli api LLaMA-Factory/examples/inference/qwen2_5vl.yaml
@article{hao2025oralgpt,
title={OralGPT-Omni: A Versatile Dental Multimodal Large Language Model},
author={Hao, Jing and Liang, Yuci and Lin, Lizhuo and Fan, Yuxuan and Zhou, Wenkai and Guo, Kaixin and Ye, Zanting and Sun, Yanpeng and Zhang, Xinyu and Yang, Yanqi and others},
journal={arXiv preprint arXiv:2511.22055},
year={2025}
}