opik-openai 1.10.13 → 1.10.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -55,7 +55,7 @@ const trackedOpenAI = trackOpenAI(openai, {
55
55
  // Use the tracked client just like the original
56
56
  async function main() {
57
57
  const completion = await trackedOpenAI.chat.completions.create({
58
- model: "gpt-4",
58
+ model: "gpt-5",
59
59
  messages: [{ role: "user", content: "Hello world" }],
60
60
  });
61
61
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "opik-openai",
3
3
  "description": "Opik TypeScript and JavaScript SDK integration with OpenAI",
4
- "version": "1.10.13",
4
+ "version": "1.10.14",
5
5
  "engines": {
6
6
  "node": ">=18"
7
7
  },