diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-07-11 12:41:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 12:41:31 +0200 |
commit | b7c3b50e411bf949a73f551af6d8582bdf390b08 (patch) | |
tree | 91d211a80cf87322b7460aa54b62325c4c34f169 | |
parent | 069962d04fb51fd52f891297b9096dd7143eaa18 (diff) | |
download | nextcloud-server-b7c3b50e411bf949a73f551af6d8582bdf390b08.tar.gz nextcloud-server-b7c3b50e411bf949a73f551af6d8582bdf390b08.zip |
Update core/Controller/LanguageModelApiController.php
Co-authored-by: Kate <26026535+provokateurin@users.noreply.github.com>
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
-rw-r--r-- | core/Controller/LanguageModelApiController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/LanguageModelApiController.php b/core/Controller/LanguageModelApiController.php index dcc8e59e2cc..b343cb4315b 100644 --- a/core/Controller/LanguageModelApiController.php +++ b/core/Controller/LanguageModelApiController.php @@ -71,7 +71,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: 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{}> + * @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 |