Prompt example extracted from OpenAI Cookbook.
curl http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-oss-safeguard-20b",
"stream": true,
"messages": [
{ "role": "system", "content": "
" },
{ "role": "user", "content": "
" }
]
}'