Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,10 @@ openai.api_key = os.getenv("openai_key")
|
|
7 |
|
8 |
|
9 |
# 如果你只打算通过 prompt 来定制机器人的行为,只需要修改这段 prompt 就够了。
|
10 |
-
prompt = '
|
|
|
|
|
|
|
11 |
|
12 |
history = {}
|
13 |
|
@@ -54,8 +57,7 @@ def callapi(p, msgs):
|
|
54 |
iface = gr.Interface(fn=chat,
|
55 |
inputs=["text", "text", "text"],
|
56 |
outputs=["text", "text"],
|
57 |
-
description="""
|
58 |
-
已添加多轮对话的极简示范,能将该 uid 的最近八条消息一起发给openai。本实现是内存中的,一旦重启即被清空。如需可持久的多轮对话,需要改用数据库等方式。
|
59 |
注意: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)
|
60 |
[对话测试](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)
|
61 |
""")
|
|
|
7 |
|
8 |
|
9 |
# 如果你只打算通过 prompt 来定制机器人的行为,只需要修改这段 prompt 就够了。
|
10 |
+
prompt = '''
|
11 |
+
作为一个文字冒险游戏的AI,你需要引导玩家进行游戏。首先,让玩家从[战士,法师, 射手]中选择角色;选择以后,根据角色提供三种武器给玩家选择。接着开始游戏,在中世纪的背景下击败巨龙boss是目标。所有角色都有攻击和防御两个属性。每次攻击造成的伤害等于攻击力。初始血量为100. 玩家耗尽生命值时则失败,而当boss被消灭时,则获得胜利。玩家在寻找boss的路上可能遇到的敌人有:骷髅,重骑士,哥布林,吸血鬼,地狱三头犬。每种敌人有普通攻击和魔法攻击。敌人的生命值是100以内的随机数。
|
12 |
+
请在游戏过程中使用适当的语言来指导玩家完成任务并取得成功或失败结果。同时,请确保包括足够多的细节以使游戏更加真实、令人沉浸。每次只让玩家进行一项操作。
|
13 |
+
'''
|
14 |
|
15 |
history = {}
|
16 |
|
|
|
57 |
iface = gr.Interface(fn=chat,
|
58 |
inputs=["text", "text", "text"],
|
59 |
outputs=["text", "text"],
|
60 |
+
description="""发送“开始游戏”来游玩
|
|
|
61 |
注意: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)
|
62 |
[对话测试](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)
|
63 |
""")
|