Keep the client
Set the AIWave base URL and keep the OpenAI Python or Node client you already use.
Keep the OpenAI request shape, choose an explicit model ID, and inspect the request record after the call. AIWave gives developers one route for Chinese provider families and one billing surface.
A small smoke test proves the route works. The next request should resemble the workload you actually plan to run.
One representative payload, one saved resultSet the AIWave base URL and keep the OpenAI Python or Node client you already use.
Use a current model ID for coding, long context, vision, or a small smoke test. Check the dated rate before a larger run.
Inspect usage, status, model ID, effective group, and charge in the request record.
The client shape is only the beginning. These checks keep a working request understandable after it leaves your terminal.
Route, account, response, recordThe endpoint is OpenAI-compatible, but the model field still needs an exact current ID.
Balance and effective group affect whether a request can run and how it is charged.
Keep the request ID and usage fields when you move from a smoke test to a real workload.
Keep the key server side. Copy the request, replace the model only with an ID from the current directory, and inspect the response.
OpenAI-compatible chat completionscurl https://aiwave.live/v1/chat/completions \
-H "Authorization: Bearer $AIWAVE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"deepseek-v4-pro","messages":[{"role":"user","content":"Say hello in one sentence."}],"max_tokens":32}'Save the request ID, model ID, usage fields, status, and charge with the application record.
It is an API route that exposes models from Chinese provider families through a developer-facing interface.
Yes. Set the base URL to https://aiwave.live/v1 and pass an AIWave key on the server side.
Start with the current model directory, then compare the dated rate and context details for the workload.
Keep the request small, confirm the route, then move to the workload that matters.