-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
267 lines (233 loc) · 6.98 KB
/
main.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
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
package main
// wizwizwiz project
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
)
type Translation struct {
DetectedSourceLanguage string `json:"detected_source_language"`
Text string `json:"text"`
}
type TranslateResponse struct {
Translations []Translation `json:"translations"`
}
type CompletionRequest struct {
Messages []Message `json:"messages"`
Temperature float32 `json:"temperature"`
MaxTokens int `json:"max_tokens"`
TopP float32 `json:"top_p"`
FrequencyPenalty float32 `json:"frequency_penalty"`
PresencePenalty float32 `json:"presence_penalty"`
Model string `json:"model"`
Stream bool `json:"stream"`
}
type Message struct {
Role string `json:"role"`
Content string `json:"content"`
}
// build an http server
func main() {
log.Println("Ici1")
http.HandleFunc("/", indexHandler)
http.HandleFunc("/translate", translateHandler)
fs := http.FileServer(http.Dir("."))
http.Handle("/static/", http.StripPrefix("/static/", fs))
fmt.Println("Server listening on port 8080")
log.Fatal(http.ListenAndServe(":8080", nil))
}
func indexHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "index.html")
}
func makeDeepLRequest(apiKey string, text string, targetLang string) (string, error) {
apiUrl := "https://api-free.deepl.com/v2/translate"
reqBody := fmt.Sprintf("text=%s&target_lang=%s", url.QueryEscape(text), targetLang)
req, err := http.NewRequest("POST", apiUrl, bytes.NewReader([]byte(reqBody)))
if err != nil {
return "", err
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("Authorization", "DeepL-Auth-Key "+apiKey)
req.Header.Set("User-Agent", "YourApp/1.2.3")
client := http.Client{}
resp, err := client.Do(req)
if err != nil {
return "", err
}
defer resp.Body.Close()
respBody, err := ioutil.ReadAll(resp.Body)
log.Println("The status code we got is:", resp.StatusCode)
if err != nil {
return "", err
}
return string(respBody), nil
}
func translateHandler(w http.ResponseWriter, r *http.Request) {
// Parse form data from the request body
err := r.ParseForm()
if err != nil {
http.Error(w, "Error parsing form data", http.StatusInternalServerError)
return
}
log.Println("Ici")
// Get the API key from the query parameters
apiKey := r.FormValue("apiKey")
openaiApiKey := r.FormValue("openaiApiKey")
// Get the text and target language from the query parameters
text := r.FormValue("text")
log.Printf("Received 'text' parameter: %s\n", text)
log.Println("text", text)
targetLangInput := r.FormValue("targetLang")
log.Println(targetLangInput)
log.Println("The target language is gg:", targetLangInput)
log.Println("Dans la boucle Here")
if targetLangInput == "GPT" {
log.Println("Dans la boucle GPT")
systemText := r.FormValue("systemText")
respBody, err := openaiChatCompletionsRequest(openaiApiKey, text, systemText)
if err != nil {
fmt.Println("Error:", err)
return
}
_, content, err := parseJSONOpenaiResponseMessage(string(respBody))
if err != nil {
fmt.Println(err)
return
}
log.Println("coucou")
fmt.Fprintf(w, "%s", content)
} else {
// Check if the API key is empty
if apiKey == "" {
http.Error(w, "Missing API key", http.StatusBadRequest)
return
}
_, targetLang, err := getTranslationLanguages(targetLangInput)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
// Make the DeepL API request
translatedText, err := makeRequest(w, apiKey, text, targetLang)
if err != nil {
log.Println("Error")
return
}
if err == nil && targetLangInput == "FRENFR" {
translatedText, err = makeRequest(w, apiKey, translatedText, "FR")
}
// Write the translated text to the response
log.Println(translatedText)
fmt.Fprintf(w, "%s", translatedText)
}
}
func makeRequest(w http.ResponseWriter, apiKey string, text string, targetLang string) (string, error) {
respBody, err := makeDeepLRequest(apiKey, text, targetLang)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return "", err
}
// Parse the JSON response body
var respBodyVar TranslateResponse
if err := json.Unmarshal([]byte(respBody), &respBodyVar); err != nil {
return "", err
}
// Extract the translated text
translatedText := ""
if len(respBodyVar.Translations) > 0 {
translatedText = respBodyVar.Translations[0].Text
}
return translatedText, nil
}
func getTranslationLanguages(targetLangInput string) (string, string, error) {
log.Println(targetLangInput)
sourceLang := ""
targetLang := ""
if targetLangInput == "ENFR" {
sourceLang = "auto"
targetLang = "FR"
} else if targetLangInput == "FREN" {
sourceLang = "auto"
targetLang = "EN"
} else if targetLangInput == "FRENFR" {
sourceLang = "auto"
targetLang = "EN"
} else {
// Invalid targetLang value
return "", "", errors.New("Invalid targetLang value")
}
return sourceLang, targetLang, nil
}
func openaiChatCompletionsRequest(openaiKey string, text string, systemText string) ([]byte, error) {
// Set the necessary headers
contentType := "application/json"
authToken := "Bearer " + openaiKey // Replace with your actual API token
// Build the HTTP request body
msgs := []Message{
Message{Role: "system", Content: systemText},
Message{Role: "user", Content: text},
}
completionRequest := CompletionRequest{
Messages: msgs,
Temperature: 1,
MaxTokens: 1693,
Model: "gpt-4",
}
reqBody, err := json.Marshal(completionRequest)
if err != nil {
return nil, err
}
// log text
log.Println(string(reqBody))
// Build the HTTP request
req, err := http.NewRequest("POST", "https://api.openai.com/v1/chat/completions", bytes.NewBuffer(reqBody))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", contentType)
req.Header.Set("Authorization", authToken)
// Send the HTTP request
client := http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
// Read the response body
respBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return respBody, nil
}
type ChatCompletion struct {
ID string `json:"id"`
Object string `json:"object"`
Created int `json:"created"`
Model string `json:"model"`
Choices []struct {
Message struct {
Role string `json:"role"`
Content string `json:"content"`
} `json:"message"`
FinishReason string `json:"finish_reason"`
Index int `json:"index"`
} `json:"choices"`
}
func parseJSONOpenaiResponseMessage(jsonMessage string) (string, string, error) {
// Parse the JSON message into a ChatCompletion struct
var chatCompletion ChatCompletion
err := json.Unmarshal([]byte(jsonMessage), &chatCompletion)
if err != nil {
return "", "", err
}
// Extract the model and content fields
model := chatCompletion.Model
content := chatCompletion.Choices[0].Message.Content
return model, content, nil
}