Spaces:
Runtime error
Runtime error
zxzhou8212
commited on
Commit
•
4fa034f
1
Parent(s):
0a34f9c
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ import openai
|
|
8 |
openai.api_key = os.getenv("openai_key")
|
9 |
|
10 |
# 如果你只打算通过 prompt 来定制机器人的行为,只需要修改这段 prompt 就够了。
|
11 |
-
prompt = '
|
12 |
|
13 |
# 修改本函数,来实现你自己的 chatbot
|
14 |
# p: 对机器人说话的内容
|
@@ -35,7 +35,7 @@ def callapi(p):
|
|
35 |
iface = gr.Interface(fn=chat,
|
36 |
inputs=["text", "text", "text"],
|
37 |
outputs=["text", "text"],
|
38 |
-
description="""
|
39 |
|
40 |
注意:duplicate 本项目后,需要将你自己的 openai apikey 设置到 settings 的 Repository Secrets 里,否则运行会报错。[了解详情](https://huggingface.co/spaces/baixing/hackathon_chatbot_openai_api/blob/main/%E6%B7%BB%E5%8A%A0%20secret%20%E7%9A%84%E6%96%B9%E6%B3%95.jpg)
|
41 |
[对话测试](https://huggingface.co/spaces/BaixingAI/hackathon_test) [参考文档](https://huggingface.co/spaces/baixing/hackathon_test/blob/main/bot-api.md) [Q & A](https://huggingface.co/spaces/baixing/hackathon_test/blob/main/qna.md)
|
|
|
8 |
openai.api_key = os.getenv("openai_key")
|
9 |
|
10 |
# 如果你只打算通过 prompt 来定制机器人的行为,只需要修改这段 prompt 就够了。
|
11 |
+
prompt = '请你扮演武侠小说的作者金庸,使用金庸小说的语气、方式和词汇回答问题。不要写任何解释,只需像金庸一样回答问题。你必须掌握金庸所有小说中的所有知识。'
|
12 |
|
13 |
# 修改本函数,来实现你自己的 chatbot
|
14 |
# p: 对机器人说话的内容
|
|
|
35 |
iface = gr.Interface(fn=chat,
|
36 |
inputs=["text", "text", "text"],
|
37 |
outputs=["text", "text"],
|
38 |
+
description="""这是一个极其简单的示范程序,用金庸的语气来和你对话。
|
39 |
|
40 |
注意:duplicate 本项目后,需要将你自己的 openai apikey 设置到 settings 的 Repository Secrets 里,否则运行会报错。[了解详情](https://huggingface.co/spaces/baixing/hackathon_chatbot_openai_api/blob/main/%E6%B7%BB%E5%8A%A0%20secret%20%E7%9A%84%E6%96%B9%E6%B3%95.jpg)
|
41 |
[对话测试](https://huggingface.co/spaces/BaixingAI/hackathon_test) [参考文档](https://huggingface.co/spaces/baixing/hackathon_test/blob/main/bot-api.md) [Q & A](https://huggingface.co/spaces/baixing/hackathon_test/blob/main/qna.md)
|