sohoso commited on
Commit
6a695f0
·
verified ·
1 Parent(s): df5a067

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -7
app.py CHANGED
@@ -92,12 +92,42 @@ def ImageChat(image, prompt="Analyze"):
92
  except ValueError as e:
93
  return f"Error in generating response: {e}"
94
 
95
- app = gr.Interface(
96
- fn=ImageChat,
97
- inputs=[gr.Image(label=""), gr.Textbox(label="Your Prompt", value="Analyze")],
98
- outputs=gr.Textbox(label="Response"),
99
- title = "",
100
- theme=gr.themes.Soft()
101
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
 
103
  app.launch()
 
92
  except ValueError as e:
93
  return f"Error in generating response: {e}"
94
 
95
+ def copy_to_clipboard(output_text):
96
+ import pyperclip
97
+ pyperclip.copy(output_text)
98
+ return "Copied to clipboard!"
99
+
100
+ def export_to_file(output_text):
101
+ with open("output.txt", "w") as file:
102
+ file.write(output_text)
103
+ return "Output exported to output.txt"
104
+
105
+ app = gr.Blocks()
106
+
107
+ with app:
108
+ image_input = gr.Image(type="pil", label="")
109
+ prompt_input = gr.Textbox(label="Your Prompt", value="Analyze")
110
+ output_field = gr.Markdown(label="Response")
111
+
112
+ with gr.Row():
113
+ copy_button = gr.Button("Copy")
114
+ export_button = gr.Button("Export")
115
+
116
+ def process_image(image, prompt):
117
+ response = ImageChat(image, prompt)
118
+ return response
119
+
120
+ copy_button.click(fn=copy_to_clipboard, inputs=[output_field], outputs=[])
121
+ export_button.click(fn=export_to_file, inputs=[output_field], outputs=[])
122
+
123
+ interface = gr.Interface(
124
+ fn=process_image,
125
+ inputs=[image_input, prompt_input],
126
+ outputs=[output_field],
127
+ title="",
128
+ theme=gr.themes.Soft()
129
+ )
130
+
131
+ interface.launch()
132
 
133
  app.launch()