Update app.py
Browse files
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
|
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 |
-
#
|
148 |
-
|
149 |
- screen capture (Win + shift + S)
|
150 |
-
- click
|
151 |
- await LLM Bot (Gemini, in this case) response
|
152 |
-
-
|
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 |
|