Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

openai-sdk changed

cli-sdks-libraries/libraries/openai-sdk

Nearest release: v2.1.280, published under an hour before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+6added
Lines−6removed
From line 45 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits5to this page, all time

The whole hunk

from line 45, old and new numbered
/
lines
from line 45
4545 )
4646 
4747 response = client.chat.completions.create(
48 model="claude-opus-5", # Claude model name
48 model="claude-opus-5-5", # Claude model name
4949 messages=[
5050 {"role": "system", "content": "You are a helpful assistant."},
5151 {"role": "user", "content": "Who are you?"},
from line 68
6868 { role: "system", content: "You are a helpful assistant." },
6969 { role: "user", content: "Who are you?" }
7070 ],
71 model: "claude-opus-5" // Claude model name
71 model: "claude-opus-5-5" // Claude model name
7272 });
7373 
7474 console.log(response.choices[0].message.content);
from line 80
8080 using OpenAI.Chat;
8181 
8282 ChatClient chatClient = new(
83 model: "claude-opus-5", // Claude model name
83 model: "claude-opus-5-5", // Claude model name
8484 credential: new ApiKeyCredential(
8585 Environment.GetEnvironmentVariable("ANTHROPIC_API_KEY")), // Your Claude API key
8686 options: new OpenAIClientOptions()
from line 114
114114 )
115115 
116116 response, err := client.Chat.Completions.New(context.Background(), openai.ChatCompletionNewParams{
117 Model: "claude-opus-5", // Claude model name
117 Model: "claude-opus-5-5", // Claude model name
118118 Messages: []openai.ChatCompletionMessageParamUnion{
119119 openai.SystemMessage("You are a helpful assistant."),
120120 openai.UserMessage("Who are you?"),
from line 142
142142 .build();
143143 
144144 ChatCompletionCreateParams params = ChatCompletionCreateParams.builder()
145 .model("claude-opus-5") // Claude model name
145 .model("claude-opus-5-5") // Claude model name
146146 .addSystemMessage("You are a helpful assistant.")
147147 .addUserMessage("Who are you?")
148148 .build();
from line 169
169169 )
170170 
171171 response = openai.chat.completions.create(
172 model: "claude-opus-5", # Claude model name
172 model: "claude-opus-5-5", # Claude model name
173173 messages: [
174174 {role: "system", content: "You are a helpful assistant."},
175175 {role: "user", content: "Who are you?"}