This commit is contained in:
shaoyongjun 2024-10-08 22:20:51 +08:00
parent 342fbf9a61
commit 057d853f06

View File

@ -49,7 +49,7 @@ func InitAiGroup(g *echo.Group) {
return c.JSON(500, err)
}
result, err := remote_http.AiOllama.Completions(context.Background(), req.Prompt, "")
result, err := remote_http.AiOpenRouter.Completions(context.Background(), req.Prompt, "")
if err != nil || result == nil {
return c.JSON(http.StatusOK, utils.Failed(err.Error()))
}