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 "OCPP-PulseEnergy/pulseenergy-ocpp-llm" \
    --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": "OCPP-PulseEnergy/pulseenergy-ocpp-llm",
		"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 "OCPP-PulseEnergy/pulseenergy-ocpp-llm" \
        --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": "OCPP-PulseEnergy/pulseenergy-ocpp-llm",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

pulseenergy-ocpp-llm

A fine-tuned diagnostics model for OCPP (Open Charge Point Protocol) EV charging networks, built by Pulse Energy. It is trained to interpret OCPP message logs, surface likely root causes for charger faults, and explain protocol-level behaviour in plain language.

Model details

  • Developed by: Pulse Energy Technologies Pvt. Ltd.
  • Base model: Qwen2.5-7B
  • Language: English
  • License: MIT

Intended use

Designed for charge point operators (CPOs) and support teams to:

  • Diagnose charger faults from OCPP message traces (BootNotification, StatusNotification, MeterValues, StartTransaction/StopTransaction, etc.)
  • Map OCPP error codes and status transitions to probable causes
  • Explain OCPP 1.6 / 2.0.1 protocol behaviour and message semantics
  • Assist first-line support triage before escalation

Limitations and recommendations

  • Coverage is strongest for common OCPP 1.6 fault patterns; rarer or vendor-specific extensions may be less reliable.
  • The model can produce plausible but incorrect root-cause attributions; keep a human in the loop for any operational action.
  • Recommended decoding: low temperature (โ‰ˆ0.2โ€“0.4) for deterministic diagnostics.

Citation

@misc{pulseenergy_ocpp_llm,
  title  = {pulseenergy-ocpp-llm: An OCPP Diagnostics LLM},
  author = {Pulse Energy Technologies},
  year   = {2026},
  howpublished = {\url{https://huggingface.co/OCPP-PulseEnergy/pulseenergy-ocpp-llm}}
}
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for OCPP-PulseEnergy/pulseenergy-ocpp-llm

Base model

Qwen/Qwen2.5-7B
Adapter
(6)
this model