62 lines
1.9 KiB
Python
62 lines
1.9 KiB
Python
# Copyright (C) 2025 AIDC-AI
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""
|
|
Image generation endpoints
|
|
"""
|
|
|
|
from fastapi import APIRouter, HTTPException
|
|
from loguru import logger
|
|
|
|
from api.dependencies import PixelleVideoDep
|
|
from api.schemas.image import ImageGenerateRequest, ImageGenerateResponse
|
|
|
|
router = APIRouter(prefix="/image", tags=["Basic Services"])
|
|
|
|
|
|
@router.post("/generate", response_model=ImageGenerateResponse)
|
|
async def image_generate(
|
|
request: ImageGenerateRequest,
|
|
pixelle_video: PixelleVideoDep
|
|
):
|
|
"""
|
|
Image generation endpoint
|
|
|
|
Generate image from text prompt using ComfyKit.
|
|
|
|
- **prompt**: Image description/prompt
|
|
- **width**: Image width (512-2048)
|
|
- **height**: Image height (512-2048)
|
|
- **workflow**: Optional custom workflow filename
|
|
|
|
Returns path to generated image.
|
|
"""
|
|
try:
|
|
logger.info(f"Image generation request: {request.prompt[:50]}...")
|
|
|
|
# Call image service
|
|
image_path = await pixelle_video.image(
|
|
prompt=request.prompt,
|
|
width=request.width,
|
|
height=request.height,
|
|
workflow=request.workflow
|
|
)
|
|
|
|
return ImageGenerateResponse(
|
|
image_path=image_path
|
|
)
|
|
|
|
except Exception as e:
|
|
logger.error(f"Image generation error: {e}")
|
|
raise HTTPException(status_code=500, detail=str(e))
|
|
|