diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-07-11 15:28:22 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-08-09 10:02:32 +0200 |
commit | 5d975b96e77f55b06836c217346a4c642e14acd5 (patch) | |
tree | 0c75186187717deb98a8cc2bf83f5bc77bcbc5bf /core | |
parent | 6f5119c0938d949fceb1e0f17508a2a96effdc7f (diff) | |
download | nextcloud-server-5d975b96e77f55b06836c217346a4c642e14acd5.tar.gz nextcloud-server-5d975b96e77f55b06836c217346a4c642e14acd5.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 d430cbbfca86c9e21df9cc4013f7f9b9ee86fe59)
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 f2a510bec80..86023bb3fa4 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|null, type: string, status: int, userId: string|null, appId: string, input: string, output: string|null, 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 |