diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-07-11 15:28:37 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-08-09 10:02:34 +0200 |
commit | 696a45ddf1d460de7ffa6f252912375efd7e190e (patch) | |
tree | 5fc8c102bd722d45a2745a850ecf8b958b0858ec /core | |
parent | 5d975b96e77f55b06836c217346a4c642e14acd5 (diff) | |
download | nextcloud-server-696a45ddf1d460de7ffa6f252912375efd7e190e.tar.gz nextcloud-server-696a45ddf1d460de7ffa6f252912375efd7e190e.zip |
Update core/Controller/LanguageModelApiController.php
Co-authored-by: Kate <26026535+provokateurin@users.noreply.github.com>
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
(cherry picked from commit bd45c436ebc710da2309dca232173d8133e9e06a)
Diffstat (limited to 'core')
-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 86023bb3fa4..74ed26e604a 100644 --- a/core/Controller/LanguageModelApiController.php +++ b/core/Controller/LanguageModelApiController.php @@ -103,7 +103,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}, array{}> | DataResponse<Http::STATUS_OK, array{task: array{id: int|null, type: string, status: int, userId: string|null, appId: string, input: string, output: string|null, identifier: string}}, array{}> + * @return DataResponse<Http::STATUS_NOT_FOUND|Http::STATUS_INTERNAL_SERVER_ERROR, array{message:string}, array{}>|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 |