Is the VoltageGPU API really OpenAI-compatible?
Yes, VoltageGPU exposes the same protocol shape as OpenAI's Platform API. The endpoints are /v1/chat/completions, /v1/embeddings, /v1/images/generations, and /v1/models, served at https://api.voltagegpu.com/v1 with a Bearer-token Authorization header. Request and response bodies follow the OpenAI schema, streaming uses the same Server-Sent Events shape, and tool-calling follows the OpenAI tools/tool_choice contract. The official OpenAI Python and Node SDKs work against the VoltageGPU API by changing only the base_url and api_key parameters, no other code changes are required for chat, embeddings, or image generation. The model identifier changes (you select an open-weight TEE model like Qwen3-32B-TEE instead of gpt-4o) and the response object then comes from that model. VoltageGPU is not operated by OpenAI and is not affiliated with OpenAI, Inc.; the compatibility is at the protocol layer, which is now the de-facto standard interface for hosted inference.