Skip to content

Commit 7a8222a

Browse files
committed
chore(OpenAI): deprecate Assistants API officially
1 parent 7a59e4d commit 7a8222a

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If you or your business relies on this package, it's important to support the de
3030
- [Models Resource](#models-resource)
3131
- [Responses Resource](#responses-resource)
3232
- [Containers Resource](#containers-resource)
33-
- [Containers Files Resource](#container-files-resource)
33+
- [Containers Files Resource](#containers-files-resource)
3434
- [Chat Resource](#chat-resource)
3535
- [Audio Resource](#audio-resource)
3636
- [Embeddings Resource](#embeddings-resource)
@@ -1723,7 +1723,7 @@ foreach($stream as $response){
17231723
### `Assistants` Resource (deprecated)
17241724

17251725
> [!WARNING]
1726-
> OpenAI has deprecated the Assistants API and will stop working by first half of 2026. https://platform.openai.com/docs/guides/responses-vs-chat-completions#assistants
1726+
> OpenAI has deprecated the Assistants API and will stop working by August 26, 2026. https://platform.openai.com/docs/guides/migrate-to-responses#assistants-api
17271727
17281728
<details>
17291729
<summary>Assistants API Information</summary>
@@ -1857,7 +1857,7 @@ $response->toArray(); // ['object' => 'list', ...]]
18571857
### `Threads` Resource (deprecated)
18581858

18591859
> [!WARNING]
1860-
> OpenAI has deprecated the Assistants API and will stop working by first half of 2026. https://platform.openai.com/docs/guides/responses-vs-chat-completions#assistants
1860+
> OpenAI has deprecated the Assistants API and will stop working by August 26, 2026. https://platform.openai.com/docs/guides/migrate-to-responses#assistants-api
18611861
18621862
<details>
18631863
<summary>Threads API Information</summary>
@@ -1984,7 +1984,7 @@ $response->toArray(); // ['id' => 'thread_tKFLqzRN9n7MnyKKvc1Q7868', ...]
19841984
### `Thread Messages` Resource (deprecated)
19851985

19861986
> [!WARNING]
1987-
> OpenAI has deprecated the Assistants API and will stop working by first half of 2026. https://platform.openai.com/docs/guides/responses-vs-chat-completions#assistants
1987+
> OpenAI has deprecated the Assistants API and will stop working by August 26, 2026. https://platform.openai.com/docs/guides/migrate-to-responses#assistants-api
19881988
19891989
<details>
19901990
<summary>Thread Messages API Information</summary>
@@ -2128,7 +2128,7 @@ $response->toArray(); // ['object' => 'list', ...]]
21282128
### `Thread Runs` Resource (deprecated)
21292129

21302130
> [!WARNING]
2131-
> OpenAI has deprecated the Assistants API and will stop working by first half of 2026. https://platform.openai.com/docs/guides/responses-vs-chat-completions#assistants
2131+
> OpenAI has deprecated the Assistants API and will stop working by August 26, 2026. https://platform.openai.com/docs/guides/migrate-to-responses#assistants-api
21322132
21332133
<details>
21342134
<summary>Thread Runs API Information</summary>
@@ -2451,7 +2451,7 @@ $response->toArray(); // ['object' => 'list', ...]]
24512451
### `Thread Run Steps` Resource (deprecated)
24522452

24532453
> [!WARNING]
2454-
> OpenAI has deprecated the Assistants API and will stop working by first half of 2026. https://platform.openai.com/docs/guides/responses-vs-chat-completions#assistants
2454+
> OpenAI has deprecated the Assistants API and will stop working by August 26, 2026. https://platform.openai.com/docs/guides/migrate-to-responses#assistants-api
24552455
24562456
<details>
24572457
<summary>Thread Run Steps API Information</summary>

src/Contracts/ClientContract.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,17 @@ public function images(): ImagesContract;
122122
* Build assistants that can call models and use tools to perform tasks.
123123
*
124124
* @see https://platform.openai.com/docs/api-reference/assistants
125+
* @deprecated OpenAI has deprecated this endpoint and will stop working by August 26, 2026.
126+
* https://platform.openai.com/docs/guides/migrate-to-responses#assistants-api
125127
*/
126128
public function assistants(): AssistantsContract;
127129

128130
/**
129131
* Create threads that assistants can interact with.
130132
*
131133
* @see https://platform.openai.com/docs/api-reference/threads
134+
* @deprecated OpenAI has deprecated this endpoint and will stop working by August 26, 2026.
135+
* https://platform.openai.com/docs/guides/migrate-to-responses#assistants-api
132136
*/
133137
public function threads(): ThreadsContract;
134138

0 commit comments

Comments
 (0)