mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
Merge pull request #49176 from nextcloud/feat/noid/add-fake-summary-provider
feat(testing): Add a fake summary task provider
This commit is contained in:
commit
4d69d1e2f4
4 changed files with 118 additions and 0 deletions
|
|
@ -25,6 +25,7 @@ return array(
|
|||
'OCA\\Testing\\TaskProcessing\\FakeContextWriteProvider' => $baseDir . '/../lib/TaskProcessing/FakeContextWriteProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTextToImageProvider' => $baseDir . '/../lib/TaskProcessing/FakeTextToImageProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTextToTextProvider' => $baseDir . '/../lib/TaskProcessing/FakeTextToTextProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTextToTextSummaryProvider' => $baseDir . '/../lib/TaskProcessing/FakeTextToTextSummaryProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTranscribeProvider' => $baseDir . '/../lib/TaskProcessing/FakeTranscribeProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTranslateProvider' => $baseDir . '/../lib/TaskProcessing/FakeTranslateProvider.php',
|
||||
);
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ class ComposerStaticInitTesting
|
|||
'OCA\\Testing\\TaskProcessing\\FakeContextWriteProvider' => __DIR__ . '/..' . '/../lib/TaskProcessing/FakeContextWriteProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTextToImageProvider' => __DIR__ . '/..' . '/../lib/TaskProcessing/FakeTextToImageProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTextToTextProvider' => __DIR__ . '/..' . '/../lib/TaskProcessing/FakeTextToTextProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTextToTextSummaryProvider' => __DIR__ . '/..' . '/../lib/TaskProcessing/FakeTextToTextSummaryProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTranscribeProvider' => __DIR__ . '/..' . '/../lib/TaskProcessing/FakeTranscribeProvider.php',
|
||||
'OCA\\Testing\\TaskProcessing\\FakeTranslateProvider' => __DIR__ . '/..' . '/../lib/TaskProcessing/FakeTranslateProvider.php',
|
||||
);
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ use OCA\Testing\Settings\DeclarativeSettingsForm;
|
|||
use OCA\Testing\TaskProcessing\FakeContextWriteProvider;
|
||||
use OCA\Testing\TaskProcessing\FakeTextToImageProvider;
|
||||
use OCA\Testing\TaskProcessing\FakeTextToTextProvider;
|
||||
use OCA\Testing\TaskProcessing\FakeTextToTextSummaryProvider;
|
||||
use OCA\Testing\TaskProcessing\FakeTranscribeProvider;
|
||||
use OCA\Testing\TaskProcessing\FakeTranslateProvider;
|
||||
use OCP\AppFramework\App;
|
||||
|
|
@ -42,6 +43,7 @@ class Application extends App implements IBootstrap {
|
|||
$context->registerTextToImageProvider(FakeText2ImageProvider::class);
|
||||
|
||||
$context->registerTaskProcessingProvider(FakeTextToTextProvider::class);
|
||||
$context->registerTaskProcessingProvider(FakeTextToTextSummaryProvider::class);
|
||||
$context->registerTaskProcessingProvider(FakeTextToImageProvider::class);
|
||||
$context->registerTaskProcessingProvider(FakeTranslateProvider::class);
|
||||
$context->registerTaskProcessingProvider(FakeTranscribeProvider::class);
|
||||
|
|
|
|||
|
|
@ -0,0 +1,114 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
|
||||
namespace OCA\Testing\TaskProcessing;
|
||||
|
||||
use OCA\Testing\AppInfo\Application;
|
||||
use OCP\TaskProcessing\EShapeType;
|
||||
use OCP\TaskProcessing\ISynchronousProvider;
|
||||
use OCP\TaskProcessing\ShapeDescriptor;
|
||||
use OCP\TaskProcessing\ShapeEnumValue;
|
||||
use OCP\TaskProcessing\TaskTypes\TextToTextSummary;
|
||||
use RuntimeException;
|
||||
|
||||
class FakeTextToTextSummaryProvider implements ISynchronousProvider {
|
||||
|
||||
public function __construct() {
|
||||
}
|
||||
|
||||
public function getId(): string {
|
||||
return Application::APP_ID . '-text2text-summary';
|
||||
}
|
||||
|
||||
public function getName(): string {
|
||||
return 'Fake text2text summary task processing provider';
|
||||
}
|
||||
|
||||
public function getTaskTypeId(): string {
|
||||
return TextToTextSummary::ID;
|
||||
}
|
||||
|
||||
public function getExpectedRuntime(): int {
|
||||
return 1;
|
||||
}
|
||||
|
||||
public function getInputShapeEnumValues(): array {
|
||||
return [];
|
||||
}
|
||||
|
||||
public function getInputShapeDefaults(): array {
|
||||
return [];
|
||||
}
|
||||
|
||||
public function getOptionalInputShape(): array {
|
||||
return [
|
||||
'max_tokens' => new ShapeDescriptor(
|
||||
'Maximum output words',
|
||||
'The maximum number of words/tokens that can be generated in the completion.',
|
||||
EShapeType::Number
|
||||
),
|
||||
'model' => new ShapeDescriptor(
|
||||
'Model',
|
||||
'The model used to generate the completion',
|
||||
EShapeType::Enum
|
||||
),
|
||||
];
|
||||
}
|
||||
|
||||
public function getOptionalInputShapeEnumValues(): array {
|
||||
return [
|
||||
'model' => [
|
||||
new ShapeEnumValue('Model 1', 'model_1'),
|
||||
new ShapeEnumValue('Model 2', 'model_2'),
|
||||
new ShapeEnumValue('Model 3', 'model_3'),
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
public function getOptionalInputShapeDefaults(): array {
|
||||
return [
|
||||
'max_tokens' => 1234,
|
||||
'model' => 'model_2',
|
||||
];
|
||||
}
|
||||
|
||||
public function getOptionalOutputShape(): array {
|
||||
return [];
|
||||
}
|
||||
|
||||
public function getOutputShapeEnumValues(): array {
|
||||
return [];
|
||||
}
|
||||
|
||||
public function getOptionalOutputShapeEnumValues(): array {
|
||||
return [];
|
||||
}
|
||||
|
||||
public function process(?string $userId, array $input, callable $reportProgress): array {
|
||||
if (isset($input['model']) && is_string($input['model'])) {
|
||||
$model = $input['model'];
|
||||
} else {
|
||||
$model = 'unknown model';
|
||||
}
|
||||
|
||||
if (!isset($input['input']) || !is_string($input['input'])) {
|
||||
throw new RuntimeException('Invalid prompt');
|
||||
}
|
||||
$prompt = $input['input'];
|
||||
|
||||
$maxTokens = null;
|
||||
if (isset($input['max_tokens']) && is_int($input['max_tokens'])) {
|
||||
$maxTokens = $input['max_tokens'];
|
||||
}
|
||||
|
||||
return [
|
||||
'output' => 'This is a fake summary: ',// . "\n\n- Prompt: " . $prompt . "\n- Model: " . $model . "\n- Maximum number of words: " . $maxTokens,
|
||||
];
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue