Skip to content

Commit 6c834c2

Browse files
authored
Merge pull request #624 from alexrudall/chore/tweak-conversations-readme
Tweak Conversations API README
2 parents adde60d + 7e02248 commit 6c834c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ Stream GPT-5 chats with the Responses API, initiate Realtime WebRTC conversation
7676
- [Vector Stores](#vector-stores)
7777
- [Vector Store Files](#vector-store-files)
7878
- [Vector Store File Batches](#vector-store-file-batches)
79-
- [Assistants](#assistants)
8079
- [Conversations](#conversations)
80+
- [Assistants](#assistants)
8181
- [Threads and Messages](#threads-and-messages)
8282
- [Runs](#runs)
8383
- [Create and Run](#create-and-run)
@@ -1101,11 +1101,11 @@ client.vector_store_file_batches.cancel(
11011101

11021102
### Conversations
11031103

1104-
The Conversations API enables you to create and manage persistent conversations with your models. This is useful for maintaining conversation state across multiple interactions.
1104+
The [Conversations API](https://platform.openai.com/docs/api-reference/conversations) enables you to create and manage persistent conversations with your models. This is useful for maintaining conversation state across multiple interactions.
11051105

11061106
**Supported Endpoints:**
11071107
- `POST /v1/conversations` - Create a conversation
1108-
- `GET /v1/conversations/{id}` - Retrieve a conversation
1108+
- `GET /v1/conversations/{id}` - Retrieve a conversation
11091109
- `PATCH /v1/conversations/{id}` - Modify a conversation
11101110
- `DELETE /v1/conversations/{id}` - Delete a conversation
11111111
- `POST /v1/conversations/{id}/items` - Create items in a conversation
@@ -1196,7 +1196,7 @@ items = response["data"]
11961196
# With parameters
11971197
response = client.conversations.list_items(
11981198
conversation_id: conversation_id,
1199-
parameters: {
1199+
parameters: {
12001200
limit: 10,
12011201
order: "asc"
12021202
}

0 commit comments

Comments
 (0)