You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Conversations API enables you to create and manage persistent conversations with your models. This is useful for maintaining conversation state across multiple interactions.
1105
1105
1106
+
**Supported Endpoints:**
1107
+
-`POST /v1/conversations` - Create a conversation
1108
+
-`GET /v1/conversations/{id}` - Retrieve a conversation
1109
+
-`PATCH /v1/conversations/{id}` - Modify a conversation
1110
+
-`DELETE /v1/conversations/{id}` - Delete a conversation
1111
+
-`POST /v1/conversations/{id}/items` - Create items in a conversation
1112
+
-`GET /v1/conversations/{id}/items` - List items in a conversation
1113
+
-`GET /v1/conversations/{id}/items/{item_id}` - Get a specific item
1114
+
-`DELETE /v1/conversations/{id}/items/{item_id}` - Delete an item
0 commit comments