Update app.py
Browse files
app.py
CHANGED
@@ -247,24 +247,25 @@ def request_to_v2(message, cookie, user_id,attachment=None,context=[]):
|
|
247 |
return responses, context
|
248 |
|
249 |
finally:
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
|
257 |
print("*-"*100)
|
258 |
|
259 |
|
260 |
|
261 |
with gr.Blocks() as dialog_app:
|
262 |
-
gr.HTML("""<h1 align="center">Claude2-API-xiaolv-第
|
263 |
with gr.Tab("Claude2 API xiaolv"):
|
264 |
gr.Markdown("""
|
265 |
## 需要传入的参数有:
|
266 |
1.cookie:intercom-device-id-lupk8zyo=8888
|
267 |
2.user_id:对应 organization_uuid
|
|
|
268 |
## 特点:
|
269 |
1. 根据传入的cookie 和 user_id 自动创建一个新的聊天频道(conversation_uuid/channel_id);
|
270 |
2. 在新的聊天聊天频道进行对话;
|
@@ -272,7 +273,9 @@ with gr.Blocks() as dialog_app:
|
|
272 |
4. 模型只能进行一次聊天,对于特定场景比较有用,防止模型记住历史数据,影响模型对实际数据的输出额判断。
|
273 |
""")
|
274 |
gr.HTML(
|
275 |
-
"""5.如果想多轮对话的话,可以参考以下这个地址:<a href="https://huggingface.co/spaces/xiaolv/claude2_xiaolv">Claude2-API-xiaolv-第1版-多轮对话</a
|
|
|
|
|
276 |
)
|
277 |
|
278 |
|
|
|
247 |
return responses, context
|
248 |
|
249 |
finally:
|
250 |
+
time.sleep(random.uniform(1,2))
|
251 |
+
ds = delete_conversation(user_id,channel_id,cookie)
|
252 |
+
if ds:
|
253 |
+
print(f"成功删除")
|
254 |
+
else:
|
255 |
+
print(f"删除失败")
|
256 |
|
257 |
print("*-"*100)
|
258 |
|
259 |
|
260 |
|
261 |
with gr.Blocks() as dialog_app:
|
262 |
+
gr.HTML("""<h1 align="center">Claude2-API-xiaolv-第3版-单轮对话-支持文件知识库</h1>""")
|
263 |
with gr.Tab("Claude2 API xiaolv"):
|
264 |
gr.Markdown("""
|
265 |
## 需要传入的参数有:
|
266 |
1.cookie:intercom-device-id-lupk8zyo=8888
|
267 |
2.user_id:对应 organization_uuid
|
268 |
+
3.file:上传文件,可传可不传,如果需要基于文件进行问答,可以选择上传(支持:txt、csv、pdf格式)
|
269 |
## 特点:
|
270 |
1. 根据传入的cookie 和 user_id 自动创建一个新的聊天频道(conversation_uuid/channel_id);
|
271 |
2. 在新的聊天聊天频道进行对话;
|
|
|
273 |
4. 模型只能进行一次聊天,对于特定场景比较有用,防止模型记住历史数据,影响模型对实际数据的输出额判断。
|
274 |
""")
|
275 |
gr.HTML(
|
276 |
+
"""<p>5.如果想多轮对话的话,可以参考以下这个地址:<a href="https://huggingface.co/spaces/xiaolv/claude2_xiaolv">Claude2-API-xiaolv-第1版-多轮对话</a></p>"""
|
277 |
+
"""<p>6.如果只想回复一次的话,可以参考以下这个地址:<a href="https://huggingface.co/spaces/xiaolv/claude2_xiaolv_api_updata">Claude2-API-xiaolv-第2版-单轮对话</a></p>"""
|
278 |
+
"""<p>如果喜欢请给个 💖 </p>"""
|
279 |
)
|
280 |
|
281 |
|