Add MLX command parsing and routing support

This commit is contained in:
2025-09-16 21:39:08 +02:00
parent 63fea02d66
commit 154b754aff
3 changed files with 67 additions and 1 deletions

View File

@@ -55,6 +55,9 @@ func SetupRouter(handler *Handler) *chi.Mux {
r.Route("/llama-cpp", func(r chi.Router) {
r.Post("/parse-command", handler.ParseLlamaCommand())
})
r.Route("/mlx", func(r chi.Router) {
r.Post("/parse-command", handler.ParseMlxCommand())
})
})
// Instance management endpoints