This commit is contained in:
Auth
2024-09-14 22:47:53 -04:00
26 changed files with 477 additions and 17 deletions

View File

@@ -21,7 +21,6 @@ const response = await ollama.chat({
"Preheat oven to 350 degrees"
]
}
`
}],
});

View File

@@ -4,7 +4,7 @@ export default class UsersAPI extends APIRoute {
constructor() {
super('/users');
this.addSubRoute('/create', 'post', createUser);
this.addSubRoute('/create', 'post', this.createUser);
}
async get(req, res) {