Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -159,7 +159,7 @@ description = '''<div align='left'>
|
|
| 159 |
inp = [gradio.inputs.Textbox(label="请输入你的API-key(sk开头的字符串)",
|
| 160 |
default="",
|
| 161 |
type='password'),
|
| 162 |
-
gradio.inputs.Textbox(lines=
|
| 163 |
label="请输入特定的评审要求和格式",
|
| 164 |
default="""* Overall Review
|
| 165 |
Please briefly summarize the main points and contributions of this paper.
|
|
@@ -193,7 +193,7 @@ xxx"""
|
|
| 193 |
|
| 194 |
chat_reviewer_gui = gradio.Interface(fn=main,
|
| 195 |
inputs=inp,
|
| 196 |
-
outputs = [gradio.Textbox(lines=
|
| 197 |
title=title,
|
| 198 |
description=description)
|
| 199 |
|
|
|
|
| 159 |
inp = [gradio.inputs.Textbox(label="请输入你的API-key(sk开头的字符串)",
|
| 160 |
default="",
|
| 161 |
type='password'),
|
| 162 |
+
gradio.inputs.Textbox(lines=5,
|
| 163 |
label="请输入特定的评审要求和格式",
|
| 164 |
default="""* Overall Review
|
| 165 |
Please briefly summarize the main points and contributions of this paper.
|
|
|
|
| 193 |
|
| 194 |
chat_reviewer_gui = gradio.Interface(fn=main,
|
| 195 |
inputs=inp,
|
| 196 |
+
outputs = [gradio.Textbox(lines=25, label="评审结果"), gradio.Textbox(lines=2, label="资源统计")],
|
| 197 |
title=title,
|
| 198 |
description=description)
|
| 199 |
|