From 33317cf20d08a04385fb4980a872f1be0251fdad Mon Sep 17 00:00:00 2001 From: Grendgi Date: Mon, 8 Jun 2026 15:47:41 +0300 Subject: [PATCH] Allow generic AI service LLM jobs --- internal/worker/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/worker/worker.go b/internal/worker/worker.go index c21ebd3..f430df5 100644 --- a/internal/worker/worker.go +++ b/internal/worker/worker.go @@ -79,7 +79,7 @@ func (w *Worker) tick(ctx context.Context) { } jobs, err := w.store.ClaimJobs(ctx, model.ClaimJobs{ WorkerID: w.workerID, - TaskTypes: []string{TaskLLMChat, TaskChatCompletion, TaskCallAnalysis, TaskTranscription}, + TaskTypes: nil, ModelProfiles: []string{w.modelProfile, TranscriptionProfile}, Limit: w.claimLimit, })