How to use from
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 "Jip7e/DocMed" \
    --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": "Jip7e/DocMed",
		"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 "Jip7e/DocMed" \
        --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": "Jip7e/DocMed",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

🩺 DocMed

DocMed is a lightweight medical language model designed to assist medical students with learning and revision.

It provides clear, concise explanations of medical concepts in a friendly, study-oriented style.


❗ Disclaimer

DocMed is an educational model only.
It must not be used for diagnosis, treatment, or clinical decision-making.


πŸ” Capabilities

  • Medical concept explanations
  • Exam-style question answering
  • Mechanism summaries (physiology, pharmacology, pathology)
  • Short, student-friendly responses with emojis 🩺

🚫 Limitations

  • Not a clinical decision system
  • Not guaranteed to be factually correct
  • Not a replacement for textbooks or professors

🧠 Model Origin

DocMed was trained using modern parameter-efficient fine-tuning techniques on top of an open-source language model architecture.


πŸ“œ License & Attribution

This model is released under the Apache 2.0 license.
It is a derivative work of open-source language model research.


πŸ‘€ Author

DocMed is an independent educational AI project.

Downloads last month
11
Safetensors
Model size
1B params
Tensor type
F16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for Jip7e/DocMed

Finetuned
(575)
this model

Dataset used to train Jip7e/DocMed

Space using Jip7e/DocMed 1