-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
225 lines (197 loc) · 5.07 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
// package main
// import (
// "bufio"
// "embed"
// "fmt"
// "github.com/fatih/color"
// "io/ioutil"
// "log"
// "os"
// "os/exec"
// "strings"
// "syscall"
// )
// //go:embed main.py
// var pythonScript embed.FS
// var (
// flag int
// tmpFile *os.File
// contextText string
// person int
// ai int
// )
// func init() {
// person = 1
// ai = 1
// scriptBytes, err := pythonScript.ReadFile("main.py")
// if err != nil {
// log.Fatalf("Error reading embedded Python script: %v", err)
// }
// tmpFile, err = ioutil.TempFile("", "main.py")
// if err != nil {
// log.Fatalf("Error creating temporary file: %v", err)
// }
// if _, err = tmpFile.Write(scriptBytes); err != nil {
// log.Fatalf("Error writing to temporary file: %v", err)
// }
// if err = tmpFile.Close(); err != nil {
// log.Fatalf("Error closing temporary file: %v", err)
// }
// }
// func main() {
// flag = 0
// err := syscall.Setenv("PYTHONIOENCODING", "utf-8")
// if err != nil {
// panic(err)
// }
// defer func(name string) {
// _ = os.Remove(name)
// }(tmpFile.Name())
// reader := bufio.NewReader(os.Stdin)
// for {
// input := ""
// if flag == 0 {
// input = first(reader)
// } else {
// input = other(reader)
// }
// contextText += fmt.Sprintf("%d. ", person) + "User: " + input + "\n"
// person++
// cmd := exec.Command("python", tmpFile.Name(), contextText)
// out, er := cmd.CombinedOutput()
// if er != nil {
// fmt.Printf("combined out err :\n%s\n", string(out))
// log.Fatalf("cmd.Run() failed with %s\n", er)
// }
// contextText += fmt.Sprintf("%d. ", ai) + "AI: " + string(out) + "\n"
// ai++
// log.Println("ai answer: ")
// color.Cyan("%s\n", string(out))
// flag++
// }
// }
// func first(reader *bufio.Reader) string {
// color.Blue("Ask anything...")
// return readUntilDoubleNewline(reader)
// }
// func other(reader *bufio.Reader) string {
// color.Blue("Your: ")
// return readUntilDoubleNewline(reader)
// }
// func readUntilDoubleNewline(reader *bufio.Reader) string {
// var inputLines []string
// var emptyLineCount int // 新增变量,用来计数空行的数量
// for {
// input, err := reader.ReadString('\n')
// if err != nil {
// fmt.Println("读取输入错误:", err)
// return ""
// }
// trimmedInput := strings.TrimSpace(input) // 使用strings.TrimSpace去除首尾空白字符
// if trimmedInput == "" {
// emptyLineCount++ // 空行计数增加
// if emptyLineCount >= 2 { // 如果连续两个空行
// color.Red("loading...") // 打印提示信息
// break // 结束循环
// }
// } else {
// inputLines = append(inputLines, trimmedInput) // 追加非空行
// emptyLineCount = 0 // 重置空行计数
// }
// }
// return strings.Join(inputLines, "\n")
// }
package main
import (
"bufio"
"context"
"fmt"
"log"
"os"
"strings"
"github.com/fatih/color"
"github.com/sashabaranov/go-openai"
)
var (
flag int
contextText string
person int
ai int
)
func init() {
person = 1
ai = 1
flag = 0
}
func main() {
reader := bufio.NewReader(os.Stdin)
for {
input := ""
if flag == 0 {
input = first(reader)
} else {
input = other(reader)
}
contextText += fmt.Sprintf("%d. ", person) + "User: " + input + "\n"
person++
resp := Gpt(contextText)
contextText += fmt.Sprintf("%d. ", ai) + "AI: " + resp + "\n"
ai++
log.Println("ai answer: ")
color.Cyan("%s\n", resp)
flag++
}
}
func Gpt(contextInfo string) string {
openaiConfig := openai.DefaultConfig("************************")
openaiConfig.BaseURL = "*****************"
client := openai.NewClientWithConfig(openaiConfig)
resp, err := client.CreateChatCompletion(
context.Background(),
openai.ChatCompletionRequest{
Model: "gpt-4o-mini",
Messages: []openai.ChatCompletionMessage{
{
Role: openai.ChatMessageRoleUser,
Content: contextInfo,
},
},
},
)
if err != nil {
log.Panicf("ChatCompletion error: %v\n", err)
return ""
}
return resp.Choices[0].Message.Content
}
func first(reader *bufio.Reader) string {
color.Blue("Ask anything...")
return readUntilDoubleNewline(reader)
}
func other(reader *bufio.Reader) string {
color.Blue("Your: ")
return readUntilDoubleNewline(reader)
}
func readUntilDoubleNewline(reader *bufio.Reader) string {
var inputLines []string
var emptyLineCount int // 新增变量,用来计数空行的数量
for {
input, err := reader.ReadString('\n')
if err != nil {
fmt.Println("读取输入错误:", err)
return ""
}
trimmedInput := strings.TrimSpace(input) // 使用strings.TrimSpace去除首尾空白字符
if trimmedInput == "" {
emptyLineCount++ // 空行计数增加
if emptyLineCount >= 2 { // 如果连续两个空行
color.Red("loading...") // 打印提示信息
break // 结束循环
}
} else {
inputLines = append(inputLines, trimmedInput) // 追加非空行
emptyLineCount = 0 // 重置空行计数
}
}
return strings.Join(inputLines, "\n")
}