added semicolon

This commit is contained in:
MaxRobinsonTheGreat 2024-05-05 10:38:52 -05:00
parent 2faba65917
commit ac73a835eb

View file

@ -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';
}