feat sketch 提取接口
fix
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
from app.api import api_test
|
||||
from app.api import api_super_resolution
|
||||
from app.api import api_generate_image
|
||||
from app.api import api_attribute_retrieve
|
||||
from app.api import api_design
|
||||
from app.api import api_chat_robot
|
||||
from app.api import api_prompt_generation
|
||||
from app.api import api_design
|
||||
from app.api import api_design_pre_processing
|
||||
|
||||
from app.api import api_generate_image
|
||||
from app.api import api_image2sketch
|
||||
from app.api import api_prompt_generation
|
||||
from app.api import api_super_resolution
|
||||
from app.api import api_test
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@@ -20,3 +20,4 @@ router.include_router(api_design.router, tags=['design'], prefix="/api")
|
||||
router.include_router(api_chat_robot.router, tags=['chat_robot'], prefix="/api")
|
||||
router.include_router(api_prompt_generation.router, tags=['prompt_generation'], prefix="/api")
|
||||
router.include_router(api_design_pre_processing.router, tags=['design_pre_processing'], prefix="/api")
|
||||
router.include_router(api_image2sketch.router, tags=['api_image2sketch'], prefix="/api")
|
||||
|
||||
Reference in New Issue
Block a user