Skip to content

Commit

Permalink
fix: update openai specs
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed May 7, 2024
1 parent a1e268a commit e348c7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/Controller/TaskProcessingApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function taskTypes(): DataResponse {
* @param array<string, mixed> $input Task's input parameters
* @param string $type Type of the task
* @param string $appId ID of the app that will execute the task
* @param string $identifier An arbitrary identifier for the task
* @param string $customId An arbitrary identifier for the task
*
* @return DataResponse<Http::STATUS_OK, array{task: CoreTaskProcessingTask}, array{}>|DataResponse<Http::STATUS_INTERNAL_SERVER_ERROR|Http::STATUS_BAD_REQUEST|Http::STATUS_PRECONDITION_FAILED|Http::STATUS_UNAUTHORIZED, array{message: string}, array{}>
*
Expand Down
6 changes: 3 additions & 3 deletions core/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@
"appId",
"input",
"output",
"identifier",
"customId",
"completionExpectedAt",
"progress"
],
Expand Down Expand Up @@ -577,7 +577,7 @@
]
}
},
"identifier": {
"customId": {
"type": "string",
"nullable": true
},
Expand Down Expand Up @@ -3471,7 +3471,7 @@
}
},
{
"name": "identifier",
"name": "customId",
"in": "query",
"description": "An arbitrary identifier for the task",
"schema": {
Expand Down

0 comments on commit e348c7f

Please sign in to comment.