mzta_specialCommand_AddTags is now a generic mzta_specialCommand

This commit is contained in:
mic 2025-01-12 21:05:05 +01:00
parent 9569cc9dac
commit 104d85729c

View file

@ -15,12 +15,13 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
// Call the API to get the tags // Call the API to use a special prompt
import { taLogger } from '../mzta-logger.js'; import { taLogger } from '../mzta-logger.js';
export class mzta_specialCommand_AddTags { export class mzta_specialCommand {
prompt = ""; prompt = "";
worker = null; worker = null;
@ -32,7 +33,7 @@
constructor(prompt, llm, do_debug = false) { constructor(prompt, llm, do_debug = false) {
this.prompt = prompt; this.prompt = prompt;
this.llm = llm; this.llm = llm;
this.logger = new taLogger('mzta_specialCommand_AddTags', do_debug); this.logger = new taLogger('mzta_specialCommand', do_debug);
this.do_debug = do_debug; this.do_debug = do_debug;
switch (this.llm) { switch (this.llm) {
case "chatgpt_api": case "chatgpt_api":