]> source.dussan.org Git - nextcloud-server.git/commitdiff
LLM OCP API: Fix OpenApi docs
authorMarcel Klehr <mklehr@gmx.net>
Fri, 7 Jul 2023 10:11:46 +0000 (12:11 +0200)
committerMarcel Klehr <mklehr@gmx.net>
Wed, 9 Aug 2023 08:02:17 +0000 (10:02 +0200)
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
(cherry picked from commit ea4dc4cba8c433f7cf3436794706c0d5b1c57bd9)

core/Controller/LanguageModelApiController.php

index a01fe268ab24decfb23883e8b9879da9df1b4344..d82d8d0c8b3a3c1026fa5d5e007da74476bad4d6 100644 (file)
@@ -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