ClueAI commited on
Commit
a48e522
1 Parent(s): 7fee7e9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -117,6 +117,7 @@ def answer(text, sample=True, top_p=1, temperature=0.7, context=""):
117
  print("end...")
118
  ```
119
 
 
120
  ```python
121
  input_text0 = "翻译这句话成英文:屈臣氏里的化妆品到底怎么样?"
122
  input_text1 = "帮我写一个英文营销方案,针对iphone"
@@ -136,6 +137,17 @@ for i, input_text in enumerate(input_list):
136
  print(f"{input_text}{output_text}")
137
  ```
138
 
 
 
 
 
 
 
 
 
 
 
 
139
  ## 主要更新
140
 
141
 
 
117
  print("end...")
118
  ```
119
 
120
+ ### 单轮对话
121
  ```python
122
  input_text0 = "翻译这句话成英文:屈臣氏里的化妆品到底怎么样?"
123
  input_text1 = "帮我写一个英文营销方案,针对iphone"
 
137
  print(f"{input_text}{output_text}")
138
  ```
139
 
140
+ ### 多轮对话
141
+ ```python
142
+ input_text = ["你好","你是谁?"]
143
+ answer_text = ["您好,有什么可以帮助您的吗?", "我是元语智能公司研发的AI智能助手, 在不违反原则的情况下,我可以回答你的任何问题。"]
144
+ context = "\n".join([f"用户:{input_text[i]}\n小元:{answer_text[i]}" for i in range(len(input_text))])
145
+
146
+ input_text = "帮我写个请假条,我生病了"
147
+ print(f"示例".center(50, "="))
148
+ output_text = answer(input_text, context = context)
149
+ print(f"{context}\n用户:{input_text}\n小元:{output_text}")
150
+ ```
151
  ## 主要更新
152
 
153