罗峰 commited on
Commit
ccd534b
·
1 Parent(s): 48c6645

app commit

Browse files
Files changed (1) hide show
  1. app.py +25 -20
app.py CHANGED
@@ -80,24 +80,29 @@ def predict(file,input, chatbot,history):
80
  yield chatbot, history
81
  return
82
 
83
- with gr.Blocks(css=".chat-blocks{height:calc(100vh - 332px);} .mychat{flex:1} .mychat .block{min-height:100%} .mychat .block .wrap{max-height: calc(100vh - 330px);} .myinput{flex:initial !important;min-height:180px}") as demo:
84
- title = '图像识别'
85
- demo.title=title
86
- with gr.Column(elem_classes="chat-blocks"):
87
- with gr.Row(elem_classes="mychat"):
88
- file = gr.Image(type="filepath")
89
- chatbot = gr.Chatbot(label="图像识别", show_label=False)
90
- with gr.Column(elem_classes="myinput"):
91
- user_input = gr.Textbox(show_label=False, placeholder="请描述您的问题", lines=1).style(
92
- container=False)
93
- submitBtn = gr.Button("提交", variant="primary", elem_classes="btn1")
94
- emptyBtn = gr.Button("清除历史").style(container=False)
95
-
96
- history = gr.State([])
97
- submitBtn.click(predict, [file,user_input, chatbot,history], [chatbot, history],
98
- show_progress=True)
99
- submitBtn.click(reset_user_input, [], [user_input])
100
- emptyBtn.click(reset_state, outputs=[chatbot, history], show_progress=True)
101
-
102
-
 
 
 
 
 
103
  demo.queue(api_open=False,concurrency_count=20).launch()
 
80
  yield chatbot, history
81
  return
82
 
83
+ # with gr.Blocks(css=".chat-blocks{height:calc(100vh - 332px);} .mychat{flex:1} .mychat .block{min-height:100%} .mychat .block .wrap{max-height: calc(100vh - 330px);} .myinput{flex:initial !important;min-height:180px}") as demo:
84
+ # title = '图像识别'
85
+ # demo.title=title
86
+ # with gr.Column(elem_classes="chat-blocks"):
87
+ # with gr.Row(elem_classes="mychat"):
88
+ # file = gr.Image(type="filepath")
89
+ # chatbot = gr.Chatbot(label="图像识别", show_label=False)
90
+ # with gr.Column(elem_classes="myinput"):
91
+ # user_input = gr.Textbox(show_label=False, placeholder="请描述您的问题", lines=1).style(
92
+ # container=False)
93
+ # submitBtn = gr.Button("提交", variant="primary", elem_classes="btn1")
94
+ # emptyBtn = gr.Button("清除历史").style(container=False)
95
+ #
96
+ # history = gr.State([])
97
+ # submitBtn.click(predict, [file,user_input, chatbot,history], [chatbot, history],
98
+ # show_progress=True)
99
+ # submitBtn.click(reset_user_input, [], [user_input])
100
+ # emptyBtn.click(reset_state, outputs=[chatbot, history], show_progress=True)
101
+
102
+ with gr.Blocks() as demo:
103
+ image_url = gr.Image(type="filepath",label="请选择一张图片")
104
+ input = gr.Textbox(label='问题', placeholder="", lines=1)
105
+ output = gr.Textbox(label='答案', placeholder="", lines=2,interactive=False)
106
+ submit = gr.Button('提问',variant="primary")
107
+ submit.click(predict,inputs=[image_url,input],outputs=output)
108
  demo.queue(api_open=False,concurrency_count=20).launch()