Skip to content

Commit

Permalink
fix:corrected spelling error from grok to groq
Browse files Browse the repository at this point in the history
  • Loading branch information
kingmariano committed Jul 27, 2024
1 parent fb4ce2f commit d8e6340
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ func main() {

v1Router := chi.NewRouter()
v1Router.Get("/readiness", utils.HandleReadiness())
v1Router.Post("/grok/chatcompletion", ware.MiddleWareAuth(grok.ChatCompletion, cfg))
v1Router.Post("/grok/transcription", ware.MiddleWareAuth(grok.Transcription, cfg)) // deprecated
v1Router.Post("/groq/chatcompletion", ware.MiddleWareAuth(grok.ChatCompletion, cfg))
v1Router.Post("/groq/transcription", ware.MiddleWareAuth(grok.Transcription, cfg)) // deprecated
v1Router.Post("/replicate/imagegeneration", ware.MiddleWareAuth(generateimages.ImageGeneration, cfg))
v1Router.Post("/replicate/imageupscale", ware.MiddleWareAuth(imageupscale.ImageUpscale, cfg))
v1Router.Post("/replicate/videogeneration", ware.MiddleWareAuth(generatevideos.VideoGeneration, cfg))
Expand Down

0 comments on commit d8e6340

Please sign in to comment.