Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Archi Back
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FIL-A3-2024
UE-Proj
Archi Back
Commits
5d80edd8
Commit
5d80edd8
authored
1 month ago
by
BIRK Renaud
Browse files
Options
Downloads
Patches
Plain Diff
feat: jsonify first try
parent
ab7690e3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/controllers/glb_controller.py
+3
-2
3 additions, 2 deletions
src/controllers/glb_controller.py
src/controllers/render_controller.py
+3
-2
3 additions, 2 deletions
src/controllers/render_controller.py
src/controllers/suggest_controller.py
+3
-2
3 additions, 2 deletions
src/controllers/suggest_controller.py
with
9 additions
and
6 deletions
src/controllers/glb_controller.py
+
3
−
2
View file @
5d80edd8
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
})
This diff is collapsed.
Click to expand it.
src/controllers/render_controller.py
+
3
−
2
View file @
5d80edd8
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
})
This diff is collapsed.
Click to expand it.
src/controllers/suggest_controller.py
+
3
−
2
View file @
5d80edd8
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
})
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment