Skip to content

Commit

Permalink
fix task processing provider names
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <[email protected]>
  • Loading branch information
julien-nc committed Jun 20, 2024
1 parent 9f0f8b9 commit ad123b6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/TaskProcessing/HeadlineProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getId(): string {
}

public function getName(): string {
return $this->openAiAPIService->getServiceName() . '-sync';
return $this->openAiAPIService->getServiceName();
}

public function getTaskTypeId(): string {
Expand Down
2 changes: 1 addition & 1 deletion lib/TaskProcessing/STTProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function getId(): string {
}

public function getName(): string {
return $this->openAiAPIService->getServiceName() . '-sync';
return $this->openAiAPIService->getServiceName();
}

public function getTaskTypeId(): string {
Expand Down
2 changes: 1 addition & 1 deletion lib/TaskProcessing/SummaryProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getId(): string {
}

public function getName(): string {
return $this->openAiAPIService->getServiceName() . '-sync';
return $this->openAiAPIService->getServiceName();
}

public function getTaskTypeId(): string {
Expand Down
2 changes: 1 addition & 1 deletion lib/TaskProcessing/TextToTextProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getId(): string {
}

public function getName(): string {
return $this->openAiAPIService->getServiceName() . '-sync';
return $this->openAiAPIService->getServiceName();
}

public function getTaskTypeId(): string {
Expand Down
2 changes: 1 addition & 1 deletion lib/TaskProcessing/TopicsProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getId(): string {
}

public function getName(): string {
return $this->openAiAPIService->getServiceName() . '-sync';
return $this->openAiAPIService->getServiceName();
}

public function getTaskTypeId(): string {
Expand Down

0 comments on commit ad123b6

Please sign in to comment.