Save workspace changes

This commit is contained in:
2026-04-18 17:02:56 +02:00
parent f02ea9a711
commit 87d60af5a9
4220 changed files with 1388603 additions and 1554 deletions

View File

@@ -26,6 +26,8 @@ final class AnalyzeArtworkAiAssistJob implements ShouldQueue
public function __construct(
private readonly int $artworkId,
private readonly bool $force = false,
private readonly ?string $intent = null,
private readonly ?string $provider = null,
) {
$queue = (string) config('vision.queue', 'default');
if ($queue !== '') {
@@ -45,6 +47,6 @@ final class AnalyzeArtworkAiAssistJob implements ShouldQueue
return;
}
$aiAssist->analyze($artwork, $this->force);
$aiAssist->analyze($artwork, $this->force, $this->intent, $this->provider);
}
}