Update app.py
Browse files
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()
|