Spaces:
Sleeping
Sleeping
File size: 7,499 Bytes
c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b a088f99 c5d467b bc15ca9 c5d467b a088f99 24092aa a088f99 24092aa a088f99 24092aa c5d467b 24092aa |
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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
package main
import (
"bufio"
"bytes"
"encoding/json"
"io"
"net/http"
"github.com/gin-gonic/gin"
)
type OpenAIRequest struct {
Model string `json:"model"`
Messages []struct {
Role string `json:"role"`
Content string `json:"content"`
} `json:"messages"`
Stream bool `json:"stream"`
}
type OpenAIResponse struct {
ID string `json:"id"`
Object string `json:"object"`
Created int64 `json:"created"`
Model string `json:"model"`
Choices []OpenAIChoice `json:"choices"`
}
type OpenAIChoice struct {
Index int `json:"index"`
Delta OpenAIDelta `json:"delta"`
Logprobs interface{} `json:"logprobs"`
FinishReason *string `json:"finish_reason"`
}
type OpenAIDelta struct {
Role string `json:"role,omitempty"`
Content string `json:"content,omitempty"`
}
type OpenAINonStreamResponse struct {
ID string `json:"id"`
Object string `json:"object"`
Created int64 `json:"created"`
Model string `json:"model"`
Choices []OpenAINonStreamChoice `json:"choices"`
}
type OpenAINonStreamChoice struct {
Index int `json:"index"`
Message OpenAIDelta `json:"message"`
FinishReason *string `json:"finish_reason"`
}
type DuckDuckGoResponse struct {
Role string `json:"role"`
Message string `json:"message"`
Created int64 `json:"created"`
ID string `json:"id"`
Action string `json:"action"`
Model string `json:"model"`
}
func chatWithDuckDuckGo(c *gin.Context, messages []struct {
Role string `json:"role"`
Content string `json:"content"`
}, stream bool) {
userAgent := "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:123.0) Gecko/20100101 Firefox/123.0"
headers := map[string]string{
"User-Agent": userAgent,
"Accept": "text/event-stream",
"Accept-Language": "de,en-US;q=0.7,en;q=0.3",
"Accept-Encoding": "gzip, deflate, br",
"Referer": "https://duckduckgo.com/",
"Content-Type": "application/json",
"Origin": "https://duckduckgo.com",
"Connection": "keep-alive",
"Cookie": "dcm=1",
"Sec-Fetch-Dest": "empty",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "same-origin",
"Pragma": "no-cache",
"TE": "trailers",
}
statusURL := "https://duckduckgo.com/duckchat/v1/status"
chatURL := "https://duckduckgo.com/duckchat/v1/chat"
// get vqd_4
req, err := http.NewRequest("GET", statusURL, nil)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
req.Header.Set("x-vqd-accept", "1")
for key, value := range headers {
req.Header.Set(key, value)
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
defer resp.Body.Close()
vqd4 := resp.Header.Get("x-vqd-4")
payload := map[string]interface{}{
"model": "gpt-3.5-turbo-0125",
"messages": messages,
}
payloadBytes, err := json.Marshal(payload)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
req, err = http.NewRequest("POST", chatURL, bytes.NewBuffer(payloadBytes))
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
req.Header.Set("x-vqd-4", vqd4)
for key, value := range headers {
req.Header.Set(key, value)
}
resp, err = http.DefaultClient.Do(req)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
defer resp.Body.Close()
reader := bufio.NewReader(resp.Body)
c.Header("Content-Type", "text/event-stream")
c.Header("Cache-Control", "no-cache")
c.Header("Connection", "keep-alive")
c.Header("Transfer-Encoding", "chunked")
flusher, _ := c.Writer.(http.Flusher)
var response OpenAIResponse
var nonStreamResponse OpenAINonStreamResponse
response.Choices = make([]OpenAIChoice, 1)
nonStreamResponse.Choices = make([]OpenAINonStreamChoice, 1)
var responseContent string
for {
line, err := reader.ReadBytes('\n')
if err != nil {
if err == io.EOF {
break
}
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
if bytes.HasPrefix(line, []byte("data: ")) {
chunk := line[6:]
if bytes.HasPrefix(chunk, []byte("[DONE]")) {
if !stream {
nonStreamResponse.Choices[0].Message.Content = responseContent
nonStreamResponse.Choices[0].Message.Role = "assistant"
nonStreamResponse.Choices[0].FinishReason = new(string)
*nonStreamResponse.Choices[0].FinishReason = "stop"
c.JSON(http.StatusOK, nonStreamResponse)
return
} else {
stopData := OpenAIResponse{
ID: "chatcmpl-9HOzx2PhnYCLPxQ3Dpa2OKoqR2lgl",
Object: "chat.completion",
Created: 1713934697,
Model: "gpt-3.5-turbo-0125",
Choices: []OpenAIChoice{
{
Index: 0,
FinishReason: stringPtr("stop"),
},
},
}
stopDataBytes, _ := json.Marshal(stopData)
c.Data(http.StatusOK, "application/json", []byte("data: "))
c.Data(http.StatusOK, "application/json", stopDataBytes)
c.Data(http.StatusOK, "application/json", []byte("\n\n"))
flusher.Flush()
c.Data(http.StatusOK, "application/json", []byte("data: [DONE]\n\n"))
flusher.Flush()
return
}
}
var data DuckDuckGoResponse
decoder := json.NewDecoder(bytes.NewReader(chunk))
decoder.UseNumber()
err = decoder.Decode(&data)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
response.ID = data.ID
response.Object = "chat.completion"
response.Created = data.Created
response.Model = data.Model
nonStreamResponse.ID = data.ID
nonStreamResponse.Object = "chat.completion"
nonStreamResponse.Created = data.Created
nonStreamResponse.Model = data.Model
responseContent += data.Message
if stream {
response.Choices[0].Delta.Content = data.Message
responseBytes, err := json.Marshal(response)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
return
}
c.Data(http.StatusOK, "application/json", append(append([]byte("data: "), responseBytes...), []byte("\n\n")...))
flusher.Flush()
response.Choices[0].Delta.Content = ""
}
}
}
}
func stringPtr(s string) *string {
return &s
}
func main() {
gin.SetMode(gin.ReleaseMode)
r := gin.Default()
r.GET("/", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"message": "Thankyou",
})
})
r.OPTIONS("/v1/chat/completions", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"message": "ok",
})
})
r.POST("/v1/chat/completions", func(c *gin.Context) {
var req OpenAIRequest
if err := c.ShouldBindJSON(&req); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
// only support user role
for i := range req.Messages {
if req.Messages[i].Role == "system" {
req.Messages[i].Role = "user"
}
}
// set model to gpt-3.5-turbo-0125
req.Model = "gpt-3.5-turbo-0125"
chatWithDuckDuckGo(c, req.Messages, req.Stream)
})
r.GET("/v1/models", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"object": "list",
"data": []gin.H{
{
"id": "gpt-3.5-turbo-0125",
"object": "model",
"created": 1692901427,
"owned_by": "system",
},
},
})
})
r.Run(":3456")
} |