Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: set beta stability level for ai public beta endpoints #458

Merged
merged 1 commit into from
Sep 19, 2024
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
17 changes: 11 additions & 6 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "http://www.apache.org/licenses/LICENSE-2.0"
},
"version": "2.0.0",
"x-box-commit-hash": "fec2f575b3"
"x-box-commit-hash": "76b3e9a8ea"
},
"servers": [
{
Expand Down Expand Up @@ -3415,7 +3415,7 @@
}
},
"400": {
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for a for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"content": {
"application/json": {
"schema": {
Expand Down Expand Up @@ -3810,7 +3810,7 @@
}
},
"400": {
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for a for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"content": {
"application/json": {
"schema": {
Expand Down Expand Up @@ -4184,7 +4184,7 @@
}
},
"400": {
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for a for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"content": {
"application/json": {
"schema": {
Expand Down Expand Up @@ -6593,7 +6593,7 @@
}
},
"400": {
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for a for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"content": {
"application/json": {
"schema": {
Expand Down Expand Up @@ -17355,7 +17355,7 @@
"description": "Returns an empty response when the card has been successfully updated."
},
"400": {
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for a for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"description": "Returns an error when the request body is not valid.\n\n* `schema_validation_failed` - The request body contains a value for\na field that either does not exist, or for which the value or type does\nnot match the expected field type. An example might be an unknown option\nfor an `enum` or `multiSelect` field.",
"content": {
"application/json": {
"schema": {
Expand Down Expand Up @@ -24040,6 +24040,7 @@
"post": {
"operationId": "post_ai_ask",
"summary": "Ask question",
"x-stability-level": "beta",
"tags": [
"AI"
],
Expand Down Expand Up @@ -24093,6 +24094,7 @@
"post": {
"operationId": "post_ai_text_gen",
"summary": "Generate text",
"x-stability-level": "beta",
"tags": [
"AI"
],
Expand Down Expand Up @@ -24146,6 +24148,7 @@
"get": {
"operationId": "get_ai_agent_default",
"summary": "Get AI agent default configuration",
"x-stability-level": "beta",
"tags": [
"AI"
],
Expand Down Expand Up @@ -24241,6 +24244,7 @@
"post": {
"operationId": "post_ai_extract",
"summary": "Extract metadata (freeform)",
"x-stability-level": "beta",
"tags": [
"AI"
],
Expand Down Expand Up @@ -24294,6 +24298,7 @@
"post": {
"operationId": "post_ai_extract_structured",
"summary": "Extract metadata (structured)",
"x-stability-level": "beta",
"tags": [
"AI"
],
Expand Down
Loading