fix
Browse files- .gitignore +1 -0
- 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:
|