Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -4328,12 +4328,17 @@
"post": {
"operationId": "CreateConversation",
"summary": "Start a new chat conversation",
"description": "Create a new AI chat conversation",
"description": "Create a new AI chat conversation. Note that this endpoint does not currently support API key authentication.",
"parameters": [
{
"$ref": "#/components/parameters/team_name"
}
],
"security": [
{
"cookieAuth": []
}
],
"requestBody": {
"required": true,
"content": {
Expand Down Expand Up @@ -4377,7 +4382,12 @@
"get": {
"operationId": "GetConversation",
"summary": "Retrieve a chat conversation",
"description": "Get details of an existing AI chat conversation. Useful for polling for updates.",
"description": "Get details of an existing AI chat conversation. Useful for polling for updates. Note that this endpoint does not currently support API key authentication.",
"security": [
{
"cookieAuth": []
}
],
"parameters": [
{
"$ref": "#/components/parameters/team_name"
Expand Down Expand Up @@ -4417,7 +4427,7 @@
"post": {
"operationId": "SendMessage",
"summary": "Add a message to an existing conversation",
"description": "Send a new message to an existing AI chat conversation",
"description": "Send a new message to an existing AI chat conversation. Note that this endpoint does not currently support API key authentication.",
"parameters": [
{
"$ref": "#/components/parameters/team_name"
Expand All @@ -4426,6 +4436,11 @@
"$ref": "#/components/parameters/conversation_id"
}
],
"security": [
{
"cookieAuth": []
}
],
"requestBody": {
"required": true,
"content": {
Expand Down