luogu 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/luogu/chatgpt.rb +10 -0
- data/lib/luogu/cli.rb +11 -0
- data/lib/luogu/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d22ef62531ee8bf0c04bcc4258e2e0287f31b73f03da333b0e4b84aa4438ed3a
|
4
|
+
data.tar.gz: 5d9fffc7274eb10622ece637326b0981aec632714b462b2c3762dc12ca6faa38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 395e2b399e098e1c566aa88cf90ecd197b8866528ce7a97c95e11c64bc829778bd1be17a1258cf0f2144c64ad073f18cead2d174881cfa6f01a6fa5b7794831a
|
7
|
+
data.tar.gz: 05f9abbddd765a5b0265415fc0afa448446870958cb99b8d07d71930c748c8bb97e80a2c45122c00de3cc0feb906c88cec51168b6b137c3b3ee85975fe1d48b2
|
data/README.md
CHANGED
data/lib/luogu/chatgpt.rb
CHANGED
@@ -85,6 +85,16 @@ module Luogu
|
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|
88
|
+
def playload(messages)
|
89
|
+
messages.each do |message|
|
90
|
+
puts "test: #{message}"
|
91
|
+
self.puts self.chat(message)
|
92
|
+
end
|
93
|
+
now = Time.now.to_i
|
94
|
+
self.class.save @row_history, "./prompt.row_history.test-#{now}.md"
|
95
|
+
self.class.save @history.to_a, "./prompt.history.test-#{now}.md"
|
96
|
+
end
|
97
|
+
|
88
98
|
class << self
|
89
99
|
def save(history, file_path)
|
90
100
|
text = ""
|
data/lib/luogu/cli.rb
CHANGED
@@ -12,6 +12,7 @@ module Luogu
|
|
12
12
|
luogu build <file> -> 编译prompt
|
13
13
|
luogu run <file> -> 测试 prompt
|
14
14
|
luogu gen <file> <target> -> 根据 json 生成 prompt 文件
|
15
|
+
luogu test <file> <test_file.yml> -> 根据 yaml 来对 prompt 进行测试
|
15
16
|
"""
|
16
17
|
exit
|
17
18
|
end
|
@@ -37,6 +38,16 @@ module Luogu
|
|
37
38
|
chatgpt = ChatGPT.save(json, args.last)
|
38
39
|
end
|
39
40
|
|
41
|
+
subcommands['test'] = Proc.new do |args|
|
42
|
+
promtpt_file = args.first
|
43
|
+
promtpt_test_file = args.last
|
44
|
+
|
45
|
+
chatgpt = ChatGPT.new(args.first)
|
46
|
+
|
47
|
+
messages = YAML.load(promtpt_test_file)
|
48
|
+
chatgpt.playload messages
|
49
|
+
end
|
50
|
+
|
40
51
|
if subcommands.key?(ARGV.first)
|
41
52
|
subcommands[ARGV.first].call(ARGV[1..-1])
|
42
53
|
else
|
data/lib/luogu/version.rb
CHANGED