0xtaipoian
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -81,17 +81,22 @@ def chat(messages, temperature=0.9, max_new_tokens=200):
|
|
81 |
|
82 |
return response
|
83 |
|
84 |
-
messages = [
|
|
|
|
|
85 |
|
86 |
-
"content":
|
87 |
"""
|
88 |
-
|
89 |
-
|
90 |
-
|
|
|
|
|
|
|
|
|
91 |
"""}]
|
92 |
|
93 |
-
result = chat(
|
94 |
-
+ messages, max_new_tokens=500, temperature=0.95)
|
95 |
|
96 |
print(result)
|
97 |
```
|
|
|
81 |
|
82 |
return response
|
83 |
|
84 |
+
messages = [
|
85 |
+
# {"role": "system", "content": ""},
|
86 |
+
{"role": "user",
|
87 |
|
88 |
+
"content":
|
89 |
"""
|
90 |
+
密陽44人輪姦案」受害女隔20年現身:時間停在2004,不記...
|
91 |
+
|
92 |
+
南韓密陽2004年曾發生一起44人輪姦一位14歲少女案件,44名加害者當時幾乎都未成年,
|
93 |
+
法官輕判引起社會聲浪抗議。案件如今過了20年,當年只有14歲的少女與妹妹相隔20年現
|
94 |
+
身,近日接受節目《想知道真相》訪問,坦言沒有藥物無法生活,時間就此停在了2004年
|
95 |
+
走不出來,「我的夢想是什麼,我不記得了。」只希望家人們從惡夢裡逃脫,過著幸福日
|
96 |
+
子。
|
97 |
"""}]
|
98 |
|
99 |
+
result = chat(messages, max_new_tokens=200, temperature=1)
|
|
|
100 |
|
101 |
print(result)
|
102 |
```
|