JustKiddo commited on
Commit
f51c254
·
verified ·
1 Parent(s): e5ef9c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -19,13 +19,14 @@ def sepia(input_img):
19
  ## https://www.gradio.app/docs/gradio/blocks
20
  ## required positional arguments: 'inputs' and 'outputs'
21
  def process_image(image):
22
- # Convert the input image to the format expected by the model
23
- output_img = np.array(output_img)
24
- # Run the image through the model
25
- result = client(inputs=output_img)
26
- # Extract the text from the result
27
- text = result['text']
28
- return text
 
29
 
30
  def additional_input(text):
31
  return f"Additional input received: {text}"
 
19
  ## https://www.gradio.app/docs/gradio/blocks
20
  ## required positional arguments: 'inputs' and 'outputs'
21
  def process_image(image):
22
+ try:
23
+ # Run the image through the model
24
+ result = client(inputs=image)
25
+ # Extract the text from the result
26
+ text = result['text']
27
+ return text
28
+ except Exception as e:
29
+ return f"Error: {str(e)}"
30
 
31
  def additional_input(text):
32
  return f"Additional input received: {text}"