Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ import requests
|
|
8 |
key = os.getenv("KEY")
|
9 |
|
10 |
# 如果你只打算通过 prompt 来定制机器人的行为,只需要修改这段 prompt 就够了。
|
11 |
-
prompt = """
|
12 |
########
|
13 |
"""
|
14 |
|
@@ -40,7 +40,7 @@ def chat(p, qid, uid):
|
|
40 |
iface = gr.Interface(fn=chat,
|
41 |
inputs=["text", "text", "text"],
|
42 |
outputs=["text", "text"],
|
43 |
-
description="""
|
44 |
"""
|
45 |
)
|
46 |
iface.launch()
|
|
|
8 |
key = os.getenv("KEY")
|
9 |
|
10 |
# 如果你只打算通过 prompt 来定制机器人的行为,只需要修改这段 prompt 就够了。
|
11 |
+
prompt = """请你扮演一位严谨的历史学家、考古学家、人类学家和社会学家,回答问题时需要给出历史考证,不能瞎说;回复问题要简洁、有逻辑、有层次。
|
12 |
########
|
13 |
"""
|
14 |
|
|
|
40 |
iface = gr.Interface(fn=chat,
|
41 |
inputs=["text", "text", "text"],
|
42 |
outputs=["text", "text"],
|
43 |
+
description="""这是一位严谨的历史学者。
|
44 |
"""
|
45 |
)
|
46 |
iface.launch()
|