Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/AudioToText.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class AudioToText implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ContextAgentInteraction implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/ContextWrite.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ContextWrite implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/GenerateEmoji.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class GenerateEmoji implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/TextToImage.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToImage implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/TextToText.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToText implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class TextToTextChangeTone implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/TextToTextChat.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToTextChat implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class TextToTextChatWithTools implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToTextFormalization implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/TextToTextHeadline.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToTextHeadline implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TextToTextProofread implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToTextReformulation implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToTextSimplification implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/TextToTextSummary.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class TextToTextSummary implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
2 changes: 1 addition & 1 deletion lib/public/TaskProcessing/TaskTypes/TextToTextTopics.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToTextTopics implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class TextToTextTranslate implements ITaskType {
public function __construct(
IFactory $l10nFactory,
) {
$this->l = $l10nFactory->get('core');
$this->l = $l10nFactory->get('lib');
}


Expand Down
Loading