diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-07-07 12:11:46 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-07-07 13:39:10 +0200 |
commit | ea4dc4cba8c433f7cf3436794706c0d5b1c57bd9 (patch) | |
tree | 4f50cbe02858a02b6c98ff7ac90d2ff599a025ae /core | |
parent | de1cfaae9c4ff76baaf7185c79821e497099ea54 (diff) | |
download | nextcloud-server-ea4dc4cba8c433f7cf3436794706c0d5b1c57bd9.tar.gz nextcloud-server-ea4dc4cba8c433f7cf3436794706c0d5b1c57bd9.zip |
LLM OCP API: Fix OpenApi docs
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'core')
-rw-r--r-- | core/Controller/LanguageModelApiController.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Controller/LanguageModelApiController.php b/core/Controller/LanguageModelApiController.php index a01fe268ab2..d82d8d0c8b3 100644 --- a/core/Controller/LanguageModelApiController.php +++ b/core/Controller/LanguageModelApiController.php @@ -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 |