mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-03-06 08:06:43 +08:00
# RAGFlow Go Implementation Plan 🚀 This repository tracks the progress of porting RAGFlow to Go. We'll implement core features and provide performance comparisons between Python and Go versions. ## Implementation Checklist - [x] User Management APIs - [x] Dataset Management Operations - [x] Retrieval Test - [x] Chat Management Operations - [x] Infinity Go SDK --------- Signed-off-by: Jin Hai <haijin.chn@gmail.com> Co-authored-by: Yingfeng Zhang <yingfeng.zhang@gmail.com>
248 lines
5.9 KiB
Go
248 lines
5.9 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/dao"
|
|
"ragflow/internal/service"
|
|
)
|
|
|
|
// FactoryResponse represents a model provider factory
|
|
type FactoryResponse struct {
|
|
Name string `json:"name"`
|
|
Logo string `json:"logo"`
|
|
Tags string `json:"tags"`
|
|
Status string `json:"status"`
|
|
Rank string `json:"rank"`
|
|
ModelTypes []string `json:"model_types"`
|
|
}
|
|
|
|
// LLMHandler LLM handler
|
|
type LLMHandler struct {
|
|
llmService *service.LLMService
|
|
userService *service.UserService
|
|
}
|
|
|
|
// NewLLMHandler create LLM handler
|
|
func NewLLMHandler(llmService *service.LLMService, userService *service.UserService) *LLMHandler {
|
|
return &LLMHandler{
|
|
llmService: llmService,
|
|
userService: userService,
|
|
}
|
|
}
|
|
|
|
// GetMyLLMs get my LLMs
|
|
// @Summary Get My LLMs
|
|
// @Description Get LLM list for current tenant
|
|
// @Tags llm
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Security ApiKeyAuth
|
|
// @Param include_details query string false "Include detailed fields" default(false)
|
|
// @Success 200 {object} map[string]interface{}
|
|
// @Router /v1/llm/my_llms [get]
|
|
func (h *LLMHandler) GetMyLLMs(c *gin.Context) {
|
|
// Extract token from request
|
|
token := c.GetHeader("Authorization")
|
|
if token == "" {
|
|
c.JSON(http.StatusUnauthorized, gin.H{
|
|
"code": 401,
|
|
"message": "Missing Authorization header",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Get user by token
|
|
user, err := h.userService.GetUserByToken(token)
|
|
if err != nil {
|
|
c.JSON(http.StatusUnauthorized, gin.H{
|
|
"error": "Invalid access token",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Get tenant ID from user
|
|
tenantID := user.ID
|
|
if tenantID == "" {
|
|
c.JSON(http.StatusBadRequest, gin.H{
|
|
"error": "User has no tenant ID",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Parse include_details query parameter
|
|
includeDetailsStr := c.DefaultQuery("include_details", "false")
|
|
includeDetails := includeDetailsStr == "true"
|
|
|
|
// Get LLMs for tenant
|
|
llms, err := h.llmService.GetMyLLMs(tenantID, includeDetails)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{
|
|
"error": "Failed to get LLMs",
|
|
})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"data": llms,
|
|
})
|
|
}
|
|
|
|
// Factories get model provider factories
|
|
// @Summary Get Model Provider Factories
|
|
// @Description Get list of model provider factories
|
|
// @Tags llm
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Security ApiKeyAuth
|
|
// @Success 200 {array} FactoryResponse
|
|
// @Router /v1/llm/factories [get]
|
|
func (h *LLMHandler) Factories(c *gin.Context) {
|
|
// Extract token from request
|
|
token := c.GetHeader("Authorization")
|
|
if token == "" {
|
|
c.JSON(http.StatusUnauthorized, gin.H{
|
|
"code": 401,
|
|
"message": "Missing Authorization header",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Get user by token
|
|
_, err := h.userService.GetUserByToken(token)
|
|
if err != nil {
|
|
c.JSON(http.StatusUnauthorized, gin.H{
|
|
"error": "Invalid access token",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Get model providers
|
|
dao := dao.NewModelProviderDAO()
|
|
providers := dao.GetAllProviders()
|
|
|
|
// Filter out unwanted providers
|
|
filtered := make([]FactoryResponse, 0)
|
|
excluded := map[string]bool{
|
|
"Youdao": true,
|
|
"FastEmbed": true,
|
|
"BAAI": true,
|
|
"Builtin": true,
|
|
}
|
|
|
|
for _, provider := range providers {
|
|
if excluded[provider.Name] {
|
|
continue
|
|
}
|
|
|
|
// Collect unique model types from LLMs
|
|
modelTypes := make(map[string]bool)
|
|
for _, llm := range provider.LLMs {
|
|
modelTypes[llm.ModelType] = true
|
|
}
|
|
|
|
// Convert to slice
|
|
modelTypeSlice := make([]string, 0, len(modelTypes))
|
|
for mt := range modelTypes {
|
|
modelTypeSlice = append(modelTypeSlice, mt)
|
|
}
|
|
|
|
// If no model types found, use defaults
|
|
if len(modelTypeSlice) == 0 {
|
|
modelTypeSlice = []string{"chat", "embedding", "rerank", "image2text", "speech2text", "tts", "ocr"}
|
|
}
|
|
|
|
filtered = append(filtered, FactoryResponse{
|
|
Name: provider.Name,
|
|
Logo: provider.Logo,
|
|
Tags: provider.Tags,
|
|
Status: provider.Status,
|
|
Rank: provider.Rank,
|
|
ModelTypes: modelTypeSlice,
|
|
})
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"data": filtered,
|
|
})
|
|
}
|
|
|
|
// ListApp lists LLMs grouped by factory
|
|
// @Summary List LLMs
|
|
// @Description Get list of LLMs grouped by factory with availability info
|
|
// @Tags llm
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Security ApiKeyAuth
|
|
// @Param model_type query string false "Filter by model type"
|
|
// @Success 200 {object} map[string][]service.LLMListItem
|
|
// @Router /v1/llm/list [get]
|
|
func (h *LLMHandler) ListApp(c *gin.Context) {
|
|
// Extract token from request
|
|
token := c.GetHeader("Authorization")
|
|
if token == "" {
|
|
c.JSON(http.StatusUnauthorized, gin.H{
|
|
"code": 401,
|
|
"message": "Missing Authorization header",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Get user by token
|
|
user, err := h.userService.GetUserByToken(token)
|
|
if err != nil {
|
|
c.JSON(http.StatusUnauthorized, gin.H{
|
|
"code": 401,
|
|
"message": "Invalid access token",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Get tenant ID from user
|
|
tenantID := user.ID
|
|
if tenantID == "" {
|
|
c.JSON(http.StatusBadRequest, gin.H{
|
|
"code": 400,
|
|
"message": "User has no tenant ID",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Parse model_type query parameter
|
|
modelType := c.Query("model_type")
|
|
|
|
// Get LLM list
|
|
llms, err := h.llmService.ListLLMs(tenantID, modelType)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{
|
|
"code": 500,
|
|
"message": err.Error(),
|
|
})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"code": 0,
|
|
"data": llms,
|
|
"message": "success",
|
|
})
|
|
}
|