From d6d4e0ffe367a89dda1105fed3df15bc66bff11a Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 6 Jul 2023 12:48:40 +0200 Subject: LLM OCP API: Fix psam errors Signed-off-by: Marcel Klehr --- core/Controller/LanguageModelApiController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/Controller') diff --git a/core/Controller/LanguageModelApiController.php b/core/Controller/LanguageModelApiController.php index 21954e7f1c7..9763e5878a8 100644 --- a/core/Controller/LanguageModelApiController.php +++ b/core/Controller/LanguageModelApiController.php @@ -61,9 +61,9 @@ class LanguageModelApiController extends \OCP\AppFramework\OCSController { * @UserRateThrottle(limit=20, period=120) * @AnonRateThrottle(limit=5, period=120) */ - public function schedule(string $text, string $type, ?string $appId): DataResponse { + public function schedule(string $text, string $type, ?string $appId, string $identifier = ''): DataResponse { try { - $task = AbstractLanguageModelTask::factory($type, $text, $this->userId, $appId); + $task = AbstractLanguageModelTask::factory($type, $text, $this->userId, $appId, $identifier); } catch (InvalidArgumentException $e) { return new DataResponse(['message' => $this->l->t('Requested task type does not exist')], Http::STATUS_BAD_REQUEST); } -- cgit v1.2.3