sayakpaul HF Staff commited on
Commit
da7e2c9
·
1 Parent(s): e8d5783
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +1 -1
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ __pycache__/
app.py CHANGED
@@ -32,7 +32,7 @@ def go_gguf(model_repo_id, subfolder, arch, outtype, outfile_name, bigendian, ve
32
  convert(args)
33
  return upload(args)
34
  except Exception as e:
35
- return e
36
 
37
 
38
  with gr.Blocks(theme=gr.themes.Soft()) as demo:
 
32
  convert(args)
33
  return upload(args)
34
  except Exception as e:
35
+ return str(e)
36
 
37
 
38
  with gr.Blocks(theme=gr.themes.Soft()) as demo: