Cleanup leftover

This commit is contained in:
mudler 2023-03-25 01:10:50 +01:00
parent dbc70dc13c
commit abee34f60a
1 changed files with 0 additions and 8 deletions

8
api.go
View File

@ -28,14 +28,6 @@ func api(l *llama.LLama, listenAddr string, threads int) error {
"tokens": 100
}'
*/
// Serve the index.html file
app.Get("/", func(c *fiber.Ctx) error {
data, err := indexHTML.ReadFile("index.html")
if err != nil {
return err
}
return c.Send(data)
})
// Endpoint to generate the prediction
app.Post("/predict", func(c *fiber.Ctx) error {