Basshole commited on
Commit
c6fd6e0
Β·
verified Β·
1 Parent(s): 9ea9dbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -150,6 +150,16 @@ strategy_demo = gr.Interface(fn=strategyGen.ideagen,
150
  outputs =[gr.Textbox(lines=25)],
151
  allow_flagging="never", )
152
 
 
 
 
 
 
 
 
 
 
 
153
 
154
- demo = gr.TabbedInterface([ideaGen_demo , ideaGen_Followup_demo , strategy_demo, youtube_insight_demo], ["ιˆζ„Ÿη”Ÿζˆε™¨" , "ιˆζ„Ÿη”Ÿζˆε™¨(δΈ‹δΈ€ζ­₯)" , "η­–η•₯η”Ÿζˆε™¨", "ιˆζ„Ÿη”Ÿζˆε™¨(Youtube+insightη‰ˆ)"],theme='bethecloud/storj_theme')
155
  demo.launch()
 
150
  outputs =[gr.Textbox(lines=25)],
151
  allow_flagging="never", )
152
 
153
+ 5why_demo = gr.Interface(fn=5why.5why,
154
+ description="ζθΏ°δ½ ζ‰€ι’ε°ηš„ε•ι‘Œ/ζŒ‘ζˆ°οΌŒη”’ε‡Ί 5 Whys εˆ†ζžηš„η΅ζžœγ€‚",
155
+ inputs=[
156
+ gr.Textbox(
157
+ label = "ε•ι‘ŒζθΏ°",
158
+ value = "",
159
+ lines = 3
160
+ )] ,
161
+ outputs =[gr.Textbox(lines=10)],
162
+ allow_flagging="never", )
163
 
164
+ demo = gr.TabbedInterface([ideaGen_demo , ideaGen_Followup_demo , strategy_demo, youtube_insight_demo, 5why_demo], ["ιˆζ„Ÿη”Ÿζˆε™¨" , "ιˆζ„Ÿη”Ÿζˆε™¨(δΈ‹δΈ€ζ­₯)" , "η­–η•₯η”Ÿζˆε™¨", "ιˆζ„Ÿη”Ÿζˆε™¨(Youtube+insightη‰ˆ)", "5 Whysεˆ†ζž"],theme='bethecloud/storj_theme')
165
  demo.launch()