Skip to content
Snippets Groups Projects
Commit 5d80edd8 authored by BIRK Renaud's avatar BIRK Renaud
Browse files

feat: jsonify first try

parent ab7690e3
No related branches found
No related tags found
No related merge requests found
import os
from gradio_client import Client, handle_file
from flask import jsonify, Response
class GlbController:
def get_glb(self, hf_token='', base_image_url='', ss_guidance_strength=7.5,
ss_sampling_steps=12, slat_guidance_strength=3,
slat_sampling_steps=12, multiimage_algo='stochastic',
mesh_simplify=0.95, texture_size=1024) -> str:
mesh_simplify=0.95, texture_size=1024) -> Response:
if hf_token == '':
hf_token = os.getenv("hf_token")
......@@ -44,4 +45,4 @@ class GlbController:
api_name="/extract_glb"
)
return extract_glb
return jsonify({"path": extract_glb})
import os
from flask import jsonify, Response
from gradio_client import Client, handle_file
class RenderController:
......@@ -7,7 +8,7 @@ class RenderController:
negative_prompt="sketch, drawing",
instruct_query='use everything from the image',
scale=0.8,
nfaa_negative_prompt='naked, bikini, skimpy, scanty, bare skin, lingerie, swimsuit, exposed, see-through') -> str:
nfaa_negative_prompt='naked, bikini, skimpy, scanty, bare skin, lingerie, swimsuit, exposed, see-through') -> Response:
client = Client("unity/IP-Adapter-Instruct")
......@@ -21,4 +22,4 @@ class RenderController:
api_name="/generate_image"
)
return result
return jsonify({"result": result})
import os
from flask import jsonify, Response
from gradio_client import Client
class SuggestController:
def get_suggest(self, hf_token='', message='', system_prompt='', temperature=.0,
max_new_tokens=0, top_k_sampling=0, repetition_penalty=.0,
top_p_sampling=.0) -> str:
top_p_sampling=.0) -> Response:
if hf_token == '':
hf_token = os.getenv("hf_token")
......@@ -23,4 +24,4 @@ class SuggestController:
print(result)
return result
return jsonify({"message": result})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment