From 8e6b615ada09fa4e50dc8e0b5decf662eed19856 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 19:47:41 +0000 Subject: [PATCH 1/3] chore(examples): minor formatting changes (#987) --- tests/api-resources/beta/assistants.test.ts | 2 +- .../beta/threads/runs/runs.test.ts | 12 ++++++------ .../api-resources/beta/threads/threads.test.ts | 18 +++++++++--------- tests/api-resources/chat/completions.test.ts | 8 ++++---- .../fine-tuning/jobs/jobs.test.ts | 6 +++--- tests/api-resources/images.test.ts | 6 +++--- 6 files changed, 26 insertions(+), 26 deletions(-) diff --git a/tests/api-resources/beta/assistants.test.ts b/tests/api-resources/beta/assistants.test.ts index 13fec377d..fdc325254 100644 --- a/tests/api-resources/beta/assistants.test.ts +++ b/tests/api-resources/beta/assistants.test.ts @@ -34,7 +34,7 @@ describe('resource assistants', () => { file_search: { vector_store_ids: ['string'], vector_stores: [ - { file_ids: ['string', 'string', 'string'], chunking_strategy: { type: 'auto' }, metadata: {} }, + { chunking_strategy: { type: 'auto' }, file_ids: ['string', 'string', 'string'], metadata: {} }, ], }, }, diff --git a/tests/api-resources/beta/threads/runs/runs.test.ts b/tests/api-resources/beta/threads/runs/runs.test.ts index f6a7dead6..a2fda7757 100644 --- a/tests/api-resources/beta/threads/runs/runs.test.ts +++ b/tests/api-resources/beta/threads/runs/runs.test.ts @@ -26,8 +26,8 @@ describe('resource runs', () => { additional_instructions: 'additional_instructions', additional_messages: [ { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -57,8 +57,8 @@ describe('resource runs', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -88,8 +88,8 @@ describe('resource runs', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -227,9 +227,9 @@ describe('resource runs', () => { test('submitToolOutputs: required and optional params', async () => { const response = await client.beta.threads.runs.submitToolOutputs('thread_id', 'run_id', { tool_outputs: [ - { tool_call_id: 'tool_call_id', output: 'output' }, - { tool_call_id: 'tool_call_id', output: 'output' }, - { tool_call_id: 'tool_call_id', output: 'output' }, + { output: 'output', tool_call_id: 'tool_call_id' }, + { output: 'output', tool_call_id: 'tool_call_id' }, + { output: 'output', tool_call_id: 'tool_call_id' }, ], stream: false, }); diff --git a/tests/api-resources/beta/threads/threads.test.ts b/tests/api-resources/beta/threads/threads.test.ts index abf631adb..dc0a94a7d 100644 --- a/tests/api-resources/beta/threads/threads.test.ts +++ b/tests/api-resources/beta/threads/threads.test.ts @@ -34,8 +34,8 @@ describe('resource threads', () => { { messages: [ { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -65,8 +65,8 @@ describe('resource threads', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -96,8 +96,8 @@ describe('resource threads', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -134,8 +134,8 @@ describe('resource threads', () => { vector_store_ids: ['string'], vector_stores: [ { - file_ids: ['string', 'string', 'string'], chunking_strategy: { type: 'auto' }, + file_ids: ['string', 'string', 'string'], metadata: {}, }, ], @@ -220,8 +220,8 @@ describe('resource threads', () => { thread: { messages: [ { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -251,8 +251,8 @@ describe('resource threads', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -282,8 +282,8 @@ describe('resource threads', () => { metadata: {}, }, { - role: 'user', content: 'string', + role: 'user', attachments: [ { file_id: 'file_id', @@ -313,16 +313,16 @@ describe('resource threads', () => { metadata: {}, }, ], + metadata: {}, tool_resources: { code_interpreter: { file_ids: ['string', 'string', 'string'] }, file_search: { vector_store_ids: ['string'], vector_stores: [ - { file_ids: ['string', 'string', 'string'], chunking_strategy: { type: 'auto' }, metadata: {} }, + { chunking_strategy: { type: 'auto' }, file_ids: ['string', 'string', 'string'], metadata: {} }, ], }, }, - metadata: {}, }, tool_choice: 'none', tool_resources: { diff --git a/tests/api-resources/chat/completions.test.ts b/tests/api-resources/chat/completions.test.ts index 5cdd1e670..2179c52c3 100644 --- a/tests/api-resources/chat/completions.test.ts +++ b/tests/api-resources/chat/completions.test.ts @@ -29,7 +29,7 @@ describe('resource completions', () => { model: 'gpt-4o', frequency_penalty: -2, function_call: 'none', - functions: [{ description: 'description', name: 'name', parameters: { foo: 'bar' } }], + functions: [{ name: 'name', description: 'description', parameters: { foo: 'bar' } }], logit_bias: { foo: 0 }, logprobs: true, max_tokens: 0, @@ -46,16 +46,16 @@ describe('resource completions', () => { tool_choice: 'none', tools: [ { + function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, { + function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, { + function: { name: 'name', description: 'description', parameters: { foo: 'bar' }, strict: true }, type: 'function', - function: { description: 'description', name: 'name', parameters: { foo: 'bar' }, strict: true }, }, ], top_logprobs: 0, diff --git a/tests/api-resources/fine-tuning/jobs/jobs.test.ts b/tests/api-resources/fine-tuning/jobs/jobs.test.ts index e683dfe3e..646c2f5cf 100644 --- a/tests/api-resources/fine-tuning/jobs/jobs.test.ts +++ b/tests/api-resources/fine-tuning/jobs/jobs.test.ts @@ -33,8 +33,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'name', entity: 'entity', + name: 'name', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, @@ -42,8 +42,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'name', entity: 'entity', + name: 'name', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, @@ -51,8 +51,8 @@ describe('resource jobs', () => { type: 'wandb', wandb: { project: 'my-wandb-project', - name: 'name', entity: 'entity', + name: 'name', tags: ['custom-tag', 'custom-tag', 'custom-tag'], }, }, diff --git a/tests/api-resources/images.test.ts b/tests/api-resources/images.test.ts index 43e67b030..88eb97a93 100644 --- a/tests/api-resources/images.test.ts +++ b/tests/api-resources/images.test.ts @@ -28,7 +28,7 @@ describe('resource images', () => { model: 'dall-e-2', n: 1, response_format: 'url', - size: '1024x1024', + size: '256x256', user: 'user-1234', }); }); @@ -55,7 +55,7 @@ describe('resource images', () => { model: 'dall-e-2', n: 1, response_format: 'url', - size: '1024x1024', + size: '256x256', user: 'user-1234', }); }); @@ -78,7 +78,7 @@ describe('resource images', () => { n: 1, quality: 'standard', response_format: 'url', - size: '1024x1024', + size: '256x256', style: 'vivid', user: 'user-1234', }); From 02ff1c55b5eefd8b6193ba2bf10dd5515945bd7a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:25:22 +0000 Subject: [PATCH 2/3] chore: sync openapi url (#989) --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index cad2c64cd..2371b7b8d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 68 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-97797a9363b9960b5f2fbdc84426a2b91e75533ecd409fe99e37c231180a4339.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-285bce7dcdae7eea5fe84a8d6e5af2c1473d65ea193109370fb2257851eef7eb.yml From 7335ee50fe7a6f7e59e891d2fb5924bfff6a6e26 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:25:47 +0000 Subject: [PATCH 3/3] release: 4.55.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- package.json | 2 +- scripts/build-deno | 2 +- src/version.ts | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 04004d7d1..a06275749 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.55.4" + ".": "4.55.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d43fd4772..c61b8138f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.55.5 (2024-08-12) + +Full Changelog: [v4.55.4...v4.55.5](https://github.com/openai/openai-node/compare/v4.55.4...v4.55.5) + +### Chores + +* **examples:** minor formatting changes ([#987](https://github.com/openai/openai-node/issues/987)) ([8e6b615](https://github.com/openai/openai-node/commit/8e6b615ada09fa4e50dc8e0b5decf662eed19856)) +* sync openapi url ([#989](https://github.com/openai/openai-node/issues/989)) ([02ff1c5](https://github.com/openai/openai-node/commit/02ff1c55b5eefd8b6193ba2bf10dd5515945bd7a)) + ## 4.55.4 (2024-08-09) Full Changelog: [v4.55.3...v4.55.4](https://github.com/openai/openai-node/compare/v4.55.3...v4.55.4) diff --git a/README.md b/README.md index 50f7f09e2..116375c15 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can import in Deno via: ```ts -import OpenAI from 'https://deno.land/x/openai@v4.55.4/mod.ts'; +import OpenAI from 'https://deno.land/x/openai@v4.55.5/mod.ts'; ``` diff --git a/package.json b/package.json index 9110c179b..42e3f6eec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openai", - "version": "4.55.4", + "version": "4.55.5", "description": "The official TypeScript library for the OpenAI API", "author": "OpenAI ", "types": "dist/index.d.ts", diff --git a/scripts/build-deno b/scripts/build-deno index 79fd58ea4..3083cfdab 100755 --- a/scripts/build-deno +++ b/scripts/build-deno @@ -16,7 +16,7 @@ This is a build produced from https://github.com/openai/openai-node – please g Usage: \`\`\`ts -import OpenAI from "https://deno.land/x/openai@v4.55.4/mod.ts"; +import OpenAI from "https://deno.land/x/openai@v4.55.5/mod.ts"; const client = new OpenAI(); \`\`\` diff --git a/src/version.ts b/src/version.ts index f4a031b0b..1d2b59cb4 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '4.55.4'; // x-release-please-version +export const VERSION = '4.55.5'; // x-release-please-version