ClauseWatch / proof

OpenAI Developer Docs

Source: https://developers.openai.com/api/docs
Status: actively monitored. Each version below is a SHA-256 hash of the extracted document text at capture time.

Version timeline

VersionCapturedHashRisk
#222026-07-28 15:06 UTC462bb64fe06alow
#212026-07-25 15:05 UTC155efaf8495clow
#102026-07-18 15:04 UTCb33e5dc7f81flow
#12026-07-13 15:03 UTC75e70b203d15low

Version #22 - changes vs version #21

--- version-21
+++ version-22
@@ -49,10 +49,14 @@
8
9
10
+11
+12
using OpenAI.Responses;
-string apiKey = Environment.GetEnvironmentVariable("OPENAI_API_KEY")!;
-var client = new OpenAIResponseClient(model: "gpt-5.6", apiKey: apiKey);
-OpenAIResponse response = client.CreateResponse(
+#pragma warning disable OPENAI001
+string key = Environment.GetEnvironmentVariable("OPENAI_API_KEY")!;
+ResponsesClient client = new(key);
+ResponseResult response = await client.CreateResponseAsync(
+"gpt-5.6",
"Write a short bedtime story about a unicorn."
);
Console.WriteLine(response.GetOutputText());