diff --git a/server/openai.go b/server/openai.go index 7be7129b..114a78c6 100644 --- a/server/openai.go +++ b/server/openai.go @@ -11,7 +11,7 @@ import ( ) func (s *Server) registerOpenAIRoutes(g *echo.Group) { - g.POST("/opanai/chat-completion", func(c echo.Context) error { + g.POST("/openai/chat-completion", func(c echo.Context) error { ctx := c.Request().Context() openAIApiKeySetting, err := s.Store.FindSystemSetting(ctx, &api.SystemSettingFind{ Name: api.SystemSettingOpenAIAPIKeyName, @@ -62,7 +62,7 @@ func (s *Server) registerOpenAIRoutes(g *echo.Group) { return c.JSON(http.StatusOK, composeResponse(result)) }) - g.POST("/opanai/text-completion", func(c echo.Context) error { + g.POST("/openai/text-completion", func(c echo.Context) error { ctx := c.Request().Context() openAIApiKeySetting, err := s.Store.FindSystemSetting(ctx, &api.SystemSettingFind{ Name: api.SystemSettingOpenAIAPIKeyName, @@ -113,7 +113,7 @@ func (s *Server) registerOpenAIRoutes(g *echo.Group) { return c.JSON(http.StatusOK, composeResponse(result)) }) - g.GET("/opanai/enabled", func(c echo.Context) error { + g.GET("/openai/enabled", func(c echo.Context) error { ctx := c.Request().Context() openAIApiKeySetting, err := s.Store.FindSystemSetting(ctx, &api.SystemSettingFind{ Name: api.SystemSettingOpenAIAPIKeyName, diff --git a/web/src/helpers/api.ts b/web/src/helpers/api.ts index 1d4cdfef..28602074 100644 --- a/web/src/helpers/api.ts +++ b/web/src/helpers/api.ts @@ -247,19 +247,19 @@ export function deleteIdentityProvider(id: IdentityProviderId) { } export function postChatCompletion(prompt: string) { - return axios.post>(`/api/opanai/chat-completion`, { + return axios.post>(`/api/openai/chat-completion`, { prompt, }); } export function postTextCompletion(prompt: string) { - return axios.post>(`/api/opanai/text-completion`, { + return axios.post>(`/api/openai/text-completion`, { prompt, }); } export function checkOpenAIEnabled() { - return axios.get>(`/api/opanai/enabled`); + return axios.get>(`/api/openai/enabled`); } export async function getRepoStarCount() {