mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
Fix js error in gui, Revert to_image in gui
This commit is contained in:
parent
dc77a1a7ff
commit
4bab6009c1
2 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import json
|
||||
from flask import request, Flask
|
||||
from g4f.image import is_allowed_extension, to_bytes
|
||||
from g4f.image import is_allowed_extension, to_image
|
||||
from .api import Api
|
||||
|
||||
class Backend_Api(Api):
|
||||
|
|
@ -79,7 +79,7 @@ class Backend_Api(Api):
|
|||
if "file" in request.files:
|
||||
file = request.files['file']
|
||||
if file.filename != '' and is_allowed_extension(file.filename):
|
||||
kwargs['image'] = to_bytes(file.stream)
|
||||
kwargs['image'] = to_image(file.stream, file.filename.endswith('.svg'))
|
||||
kwargs['image_name'] = file.filename
|
||||
if "json" in request.form:
|
||||
json_data = json.loads(request.form['json'])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue