-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouteWeb.go
236 lines (213 loc) · 5.67 KB
/
routeWeb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Copyright (c) 2025 minRAG Authors.
//
// This file is part of minRAG.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses>.
package main
import (
"context"
"encoding/json"
"fmt"
"net/http"
"strings"
"github.com/cloudwego/hertz/pkg/app"
"github.com/cloudwego/hertz/pkg/protocol/http1/resp"
)
// init 初始化函数
func init() {
//初始化静态文件
initStaticFS()
// 异常页面
h.GET("/error", funcError)
// 默认首页
h.GET("/", funcIndex)
// agent 页面
h.GET("/agent/:agentID", funcAgentPre)
// 兼容OpenAI模型接口,api_key是agentID,user是roomID
h.POST("/v1/chat/completions", funcChatCompletions)
}
// funcIndex 模板首页
func funcIndex(ctx context.Context, c *app.RequestContext) {
data := warpRequestMap(c)
cHtml(c, http.StatusOK, "index.html", data)
}
// funcError 错误页面
func funcError(ctx context.Context, c *app.RequestContext) {
cHtml(c, http.StatusOK, "error.html", nil)
}
// funcAgentPre 智能体
func funcAgentPre(ctx context.Context, c *app.RequestContext) {
data := warpRequestMap(c)
agentID := c.Param("agentID")
data["agentID"] = agentID
cHtml(c, http.StatusOK, "agent.html", data)
}
// funcChatCompletions 兼容OpenAI模型接口,api_key是agentID,user是roomID
func funcChatCompletions(ctx context.Context, c *app.RequestContext) {
// 设置响应头
c.SetStatusCode(http.StatusOK)
accept := string(c.GetHeader("Accept"))
stream := strings.Contains(strings.ToLower(accept), "text/event-stream")
aByte := c.GetHeader("Authorization")
if len(aByte) < 1 {
errMsg := "Authorization is empty"
if stream {
c.WriteString(warpOpenAIJsonMessage(stream, errMsg))
c.Flush()
c.WriteString("data: [DONE]\n\n")
c.Flush()
} else {
c.WriteString(errMsg)
c.Flush()
}
c.Abort()
return
}
authorization := string(aByte)
agentID := strings.TrimPrefix(authorization, "Bearer ")
if agentID == "" {
errMsg := "Authorization is empty"
if stream {
c.WriteString(warpOpenAIJsonMessage(stream, errMsg))
c.Flush()
c.WriteString("data: [DONE]\n\n")
c.Flush()
} else {
c.WriteString(errMsg)
c.Flush()
}
c.Abort()
return
}
agentRequestBody := &AgentRequestBody{}
err := c.BindJSON(agentRequestBody)
if err != nil {
errMsg := fmt.Sprintf("body is error:%v", err)
if stream {
c.WriteString(warpOpenAIJsonMessage(stream, errMsg))
c.Flush()
c.WriteString("data: [DONE]\n\n")
c.Flush()
} else {
c.WriteString(errMsg)
c.Flush()
}
}
if len(agentRequestBody.Messages) < 1 {
errMsg := "messages is empty"
if stream {
c.WriteString(warpOpenAIJsonMessage(stream, errMsg))
c.Flush()
c.WriteString("data: [DONE]\n\n")
c.Flush()
} else {
c.WriteString(errMsg)
c.Flush()
}
c.Abort()
return
}
input := make(map[string]interface{}, 0)
// 用户发送的第一个消息
input["query"] = agentRequestBody.Messages[0].Content
// agentID
input["agentID"] = agentID
// 获取roomID,可能会空
roomID := agentRequestBody.User
if roomID != "" && len(roomID) == 32 {
input["roomID"] = roomID
}
if stream {
c.Header("Accept", "text/event-stream")
c.Header("Cache-Control", "no-cache")
c.Header("Connection", "keep-alive")
writer := resp.NewChunkedBodyWriter(&c.Response, c.GetWriter())
c.Response.HijackWriter(writer)
}
input["c"] = c
agent, err := findAgentByID(ctx, agentID)
if err != nil || agent.Id == "" {
errMsg := "agent is empty"
if stream {
c.WriteString(warpOpenAIJsonMessage(stream, errMsg))
c.Flush()
c.WriteString("data: [DONE]\n\n")
c.Flush()
} else {
c.WriteString(errMsg)
c.Flush()
}
c.Abort()
return
}
input["knowledgeBaseID"] = agent.KnowledgeBaseID
pipeline := componentMap[agent.PipelineID]
pipeline.Run(ctx, input)
//choice := input["choice"]
errObj := input[errorKey]
if errObj != nil {
errMsg := fmt.Sprintf("component run is error:%v", errObj)
if stream {
msg := warpOpenAIJsonMessage(stream, errMsg)
c.WriteString(msg)
c.Flush()
c.WriteString("data: [DONE]\n\n")
c.Flush()
} else {
msg := warpOpenAIJsonMessage(stream, errMsg)
c.WriteString(msg)
c.Flush()
}
c.Abort()
return
}
//fmt.Println(choice)
//c.JSON(http.StatusOK, ResponseData{StatusCode: 1, Data: choice})
}
// warpRequestMap 包装请求参数为map
func warpRequestMap(c *app.RequestContext) map[string]interface{} {
data := make(map[string]interface{}, 0)
jwttoken := string(c.Cookie(config.JwttokenKey))
userId, _ := userIdByToken(jwttoken)
if userId != "" {
data[userTypeKey] = 1
} else {
data[userTypeKey] = 0
}
return data
}
// warpOpenAIJsonMessage 包装需要返回的OpenAI json 格式的信息
func warpOpenAIJsonMessage(stream bool, content string) string {
rs := struct {
Choices []Choice `json:"choices,omitempty"`
}{Choices: make([]Choice, 1)}
if stream {
rs.Choices[0].Delta.Content = content
} else {
rs.Choices[0].Message.Content = content
}
//大模型返回的json对象,进行接受
data, err := json.Marshal(rs)
jsonStr := string(data)
if err != nil {
jsonStr = ""
}
if stream {
if jsonStr == "" {
jsonStr = "{}"
}
jsonStr = "data: " + jsonStr + "\n\n"
}
return jsonStr
}