[bug] Use 127.0.0.1 instead of localhost to resolve Node.js request issues; For prev commit

This commit is contained in:
Sergey Konovalov
2025-07-28 14:31:12 +03:00
parent 2b2f7202d9
commit c45edeac43
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
class Provider extends AI.Provider { class Provider extends AI.Provider {
constructor() { constructor() {
super("GPT4All", "http://localhost:4891", "", "v1"); super("GPT4All", "http://127.0.0.1:4891", "", "v1");
} }
getRequestBodyOptions() { getRequestBodyOptions() {

View File

@ -35,7 +35,7 @@
class Provider extends AI.Provider { class Provider extends AI.Provider {
constructor() { constructor() {
super("LM Studio", "http://localhost:1234", "", "v1"); super("LM Studio", "http://127.0.0.1:1234", "", "v1");
} }
getImageGeneration(message, model) { getImageGeneration(message, model) {