Hi there, I could use some help. A few days ago, my product, which is built on Cloudflare Workers and integrates with Workers AI (GPT-OSS-120b) through bindings, broke because the interface changed (
prompt_tokens
prompt_tokens
and
completion_tokens
completion_tokens
were replaced with
input_tokens
input_tokens
and
output_tokens
output_tokens
). And today, I ran into another issue: the
instructions
instructions
parameter stopped working when the input was in an OpenAI-like format (like
[{role: "assistant", content: "foobar" }, ...]
[{role: "assistant", content: "foobar" }, ...]
).
Where can I check for these kinds of interface changes in advance so I can update my product before it breaks?