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
308a3e24
You need to sign in or sign up before continuing.
Commit
308a3e24
authored
1 month ago
by
BIRK Renaud
Browse files
Options
Downloads
Patches
Plain Diff
feat: API GET /render
parent
0d615219
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/controllers/render_controller.py
+6
-0
6 additions, 0 deletions
src/controllers/render_controller.py
src/routes/router.py
+7
-0
7 additions, 0 deletions
src/routes/router.py
with
13 additions
and
0 deletions
src/controllers/render_controller.py
0 → 100644
+
6
−
0
View file @
308a3e24
import
os
from
gradio_client
import
Client
,
handle_file
class
RenderController
:
def
get_render
(
self
,
hf_token
=
''
)
->
str
:
return
"
Hello, World!
"
This diff is collapsed.
Click to expand it.
src/routes/router.py
+
7
−
0
View file @
308a3e24
from
flask
import
Blueprint
,
request
from
controllers.glb_controller
import
GlbController
from
controllers.render_controller
import
RenderController
from
controllers.suggest_controller
import
SuggestController
glb_bp
=
Blueprint
(
'
glb
'
,
__name__
)
render_bp
=
Blueprint
(
'
render
'
,
__name__
)
suggest_bp
=
Blueprint
(
'
suggest
'
,
__name__
)
glb_controller
=
GlbController
()
render_controller
=
RenderController
()
suggest_controller
=
SuggestController
()
def
setup_routes
(
app
):
...
...
@@ -26,6 +29,10 @@ def setup_routes(app):
slat_sampling_steps
,
multiimage_algo
,
mesh_simplify
,
texture_size
)
@app.route
(
'
/render
'
,
methods
=
[
'
GET
'
])
def
get_render
():
return
render_controller
.
get_render
()
@app.route
(
'
/suggest
'
,
methods
=
[
'
GET
'
])
def
get_suggest
():
hf_token
=
request
.
args
.
get
(
'
hf_token
'
,
''
,
type
=
str
)
...
...
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