From ac73a835eb645560afc8eb29abdce6883398b42e Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Sun, 5 May 2024 10:38:52 -0500 Subject: [PATCH] added semicolon --- src/models/local.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/local.js b/src/models/local.js index 3ed880e..dd3af34 100644 --- a/src/models/local.js +++ b/src/models/local.js @@ -1,7 +1,7 @@ export class Local { constructor(model_name, url) { this.model_name = model_name; - this.url = url || 'http://127.0.0.1:11434' + this.url = url || 'http://127.0.0.1:11434'; this.chat_endpoint = '/api/chat'; this.embedding_endpoint = '/api/embeddings'; }