hsienchen commited on
Commit
3a29aff
β€’
1 Parent(s): 2ad436c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -10
app.py CHANGED
@@ -112,17 +112,17 @@ with gr.Blocks() as app1:
112
  image_box = gr.Image(label="βœ‚ email screen", type="filepath")
113
  btn1 = gr.Button("Generate To-Dos β˜‘")
114
  out1 = gr.Textbox(label="here are the actionables...")
115
- btn2 = gr.Button("send to Mobile ⌲")
116
  out2 = gr.Textbox(label="response from SMS gateway...")
117
 
118
  btn1.click(fn=app1_response, inputs=[image_box], outputs=out1)
119
  btn2.click(fn=send_SMS, inputs=out1, outputs=out2)
120
 
121
  gr.Markdown("""
122
- # Make a Plan #
123
 
124
  - screen capture (Win + shift + S)
125
- - click **Make a Plan** to upload
126
  - await LLM Bot (Gemini, in this case) response
127
  - receive THREE actionable items
128
 
@@ -137,21 +137,19 @@ with gr.Blocks() as app2:
137
  image_box = gr.Image(label="βœ‚ ERP screen",type="filepath")
138
  btn1 = gr.Button("Check ROQ β˜‘")
139
  out1 = gr.Textbox(label="here is the watch list πŸ“„...")
140
- btn2 = gr.Button("send out reminders ⌲")
141
  out2 = gr.Textbox(label="response or feed back?")
142
 
143
  btn1.click(fn=app2_response, inputs=[image_box], outputs=out1)
144
  btn2.click(fn=send_SMS, inputs=out1, outputs=out2)
145
 
146
  gr.Markdown("""
147
- # Make a Plan #
148
-
149
  - screen capture (Win + shift + S)
150
- - click **Make a Plan** to upload
151
  - await LLM Bot (Gemini, in this case) response
152
- - receive THREE actionable items
153
-
154
- [demo](https://youtu.be/lJ4jIAEVRNY)
155
 
156
  """)
157
 
 
112
  image_box = gr.Image(label="βœ‚ email screen", type="filepath")
113
  btn1 = gr.Button("Generate To-Dos β˜‘")
114
  out1 = gr.Textbox(label="here are the actionables...")
115
+ btn2 = gr.Button("send to Mobile ↗️")
116
  out2 = gr.Textbox(label="response from SMS gateway...")
117
 
118
  btn1.click(fn=app1_response, inputs=[image_box], outputs=out1)
119
  btn2.click(fn=send_SMS, inputs=out1, outputs=out2)
120
 
121
  gr.Markdown("""
122
+ # πŸ₯· Summerize eMail & Make a Plan #
123
 
124
  - screen capture (Win + shift + S)
125
+ - click β˜‘ to upload
126
  - await LLM Bot (Gemini, in this case) response
127
  - receive THREE actionable items
128
 
 
137
  image_box = gr.Image(label="βœ‚ ERP screen",type="filepath")
138
  btn1 = gr.Button("Check ROQ β˜‘")
139
  out1 = gr.Textbox(label="here is the watch list πŸ“„...")
140
+ btn2 = gr.Button("send out reminders ↗️")
141
  out2 = gr.Textbox(label="response or feed back?")
142
 
143
  btn1.click(fn=app2_response, inputs=[image_box], outputs=out1)
144
  btn2.click(fn=send_SMS, inputs=out1, outputs=out2)
145
 
146
  gr.Markdown("""
147
+ # 🦫 Check Inventory ROQ #
148
+ (contains bugs, more works needed)
149
  - screen capture (Win + shift + S)
150
+ - click β˜‘ to upload
151
  - await LLM Bot (Gemini, in this case) response
152
+ - send ↗️ to related parties
 
 
153
 
154
  """)
155