mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 18:50:47 -04:00
LLM OCP API: Fix OpenApi docs
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
(cherry picked from commit ea4dc4cba8)
This commit is contained in:
parent
17351b64ec
commit
39d59a10b1
1 changed files with 3 additions and 3 deletions
|
|
@ -53,7 +53,7 @@ class LanguageModelApiController extends \OCP\AppFramework\OCSController {
|
|||
* This endpoint returns all available LanguageModel task types
|
||||
*
|
||||
* @PublicPage
|
||||
* @return DataResponse<Http::STATUS_OK,array{types: string[]}, array{}>
|
||||
* @return DataResponse<Http::STATUS_OK, array{types: string[]}, array{}>
|
||||
*
|
||||
* 200: Task types returned
|
||||
*/
|
||||
|
|
@ -73,7 +73,7 @@ class LanguageModelApiController extends \OCP\AppFramework\OCSController {
|
|||
* @param string $type The task type
|
||||
* @param string $appId The originating app ID
|
||||
* @param string $identifier An identifier to identify this task
|
||||
* @return DataResponse<Http::STATUS_OK,array{task: array{id: int,type:string,status: ILanguageModelTask::STATUS_*,userId: string, appId: string,input: string,output: string, identifier: string}},array{}>|DataResponse<Http::STATUS_PRECONDITION_FAILED|Http::STATUS_BAD_REQUEST,array{message: string}, array{}>
|
||||
* @return DataResponse<Http::STATUS_OK,array{task: array{id: int, type: string, status: int, userId: string, appId: string, input: string, output: string, identifier: string}},array{}> | DataResponse<Http::STATUS_PRECONDITION_FAILED | Http::STATUS_BAD_REQUEST, array{message: string}, array{}>
|
||||
*
|
||||
* 200: Task scheduled
|
||||
* 400: Task type does not exist
|
||||
|
|
@ -102,7 +102,7 @@ class LanguageModelApiController extends \OCP\AppFramework\OCSController {
|
|||
*
|
||||
* @PublicPage
|
||||
* @param int $id The id of the task
|
||||
* @return DataResponse<Http::STATUS_NOT_FOUND|Http::STATUS_INTERNAL_SERVER_ERROR, array{message:string}>|DataResponse<Http::STATUS_OK,array{task: array{id: int,type:string,status: ILanguageModelTask::STATUS_*,userId: string, appId: string,input: string,output: string, identifier: string}},array{}>
|
||||
* @return DataResponse<Http::STATUS_NOT_FOUND | Http::STATUS_INTERNAL_SERVER_ERROR, array{message:string}> | DataResponse<Http::STATUS_OK, array{task: array{id: int, type: string, status: int, userId: string, appId: string, input: string, output: string, identifier: string}}, array{}>
|
||||
*
|
||||
* 200: Task returned
|
||||
* 404: Task not found
|
||||
|
|
|
|||
Loading…
Reference in a new issue