mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 15:31:05 +08:00
## Summary Port the Python `GET /v1/plugin/tools` endpoint to the Go API server. Listed in the Go-API port checklist of #15240. Returns the metadata of every embedded LLM tool plugin in the same JSON shape the Python endpoint emits (camelCase keys preserved), so existing frontends bind to the Go server without changes.
62 lines
1.7 KiB
Go
62 lines
1.7 KiB
Go
//
|
|
// Copyright 2026 The InfiniFlow Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"ragflow/internal/common"
|
|
"ragflow/internal/service"
|
|
)
|
|
|
|
// PluginHandler serves the /plugin/* HTTP routes.
|
|
type PluginHandler struct {
|
|
pluginService *service.PluginService
|
|
}
|
|
|
|
// NewPluginHandler creates a plugin handler.
|
|
func NewPluginHandler(pluginService *service.PluginService) *PluginHandler {
|
|
return &PluginHandler{
|
|
pluginService: pluginService,
|
|
}
|
|
}
|
|
|
|
// ListLLMTools handles GET /v1/plugin/tools.
|
|
//
|
|
// @Summary List LLM tool plugins
|
|
// @Description Return the metadata of every embedded LLM tool plugin. Matches
|
|
// @Description the response of the Python GET /v1/plugin/tools endpoint.
|
|
// @Tags plugin
|
|
// @Produce json
|
|
// @Security ApiKeyAuth
|
|
// @Success 200 {object} map[string]interface{}
|
|
// @Router /v1/plugin/tools [get]
|
|
func (h *PluginHandler) ListLLMTools(c *gin.Context) {
|
|
if _, errorCode, errorMessage := GetUser(c); errorCode != common.CodeSuccess {
|
|
jsonError(c, errorCode, errorMessage)
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": common.CodeSuccess,
|
|
"message": "success",
|
|
"data": h.pluginService.ListLLMTools(),
|
|
})
|
|
}
|