model-worker.js renamed to model-worler-openai.js see #79

This commit is contained in:
mic 2024-08-20 17:54:06 +02:00
parent d7262a2520
commit 5906082b9f
2 changed files with 1 additions and 1 deletions

View file

@ -24,7 +24,7 @@
// The controller wires up all the components and workers together,
// managing the dependencies. A kind of "DI" class.
const worker = new Worker('model-worker.js', { type: 'module' });
const worker = new Worker('model-worker-openai.js', { type: 'module' });
const messagesArea = document.querySelector('messages-area');
messagesArea.init(worker);