Some checks failed
Build and Push Docker Image / build (push) Failing after 9s
The original implementation used guessed endpoint paths that don't match
the actual Freepik API. Key fixes based on their OpenAPI spec:
- Task polling is per-endpoint (e.g. GET /v1/ai/text-to-image/flux-dev/{task-id})
not a generic /v1/ai/tasks/{id}. freepik_client now returns TaskResult
with status_path, and task_tracker polls using that path.
- Fixed endpoint paths: flux-pro -> flux-pro-v1-1, upscale -> image-upscaler,
relight -> image-relight, style-transfer -> image-style-transfer,
expand -> image-expand/flux-pro, inpaint -> ideogram-image-edit,
remove-background -> beta/remove-background, classifier -> classifier/image,
audio-isolate -> audio-isolation, icon -> text-to-icon
- Fixed video paths: kling -> kling-o1-pro with kling-o1 status path,
minimax -> minimax-hailuo-02-1080p, seedance -> seedance-pro-1080p
- Fixed request schemas to match actual API params (e.g. scale_factor
not scale, reference_image not style_reference, image_url for bg removal)
- Fixed response parsing: status is uppercase (COMPLETED not completed),
results in data.generated[] array, classifier returns [{class_name, probability}]
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
1.0 KiB
Python
24 lines
1.0 KiB
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class KlingRequest(BaseModel):
|
|
first_frame: Optional[str] = Field(None, description='Base64 or URL of first frame image')
|
|
last_frame: Optional[str] = Field(None, description='Base64 or URL of last frame image')
|
|
prompt: Optional[str] = Field(None, max_length=2500)
|
|
duration: Optional[int] = Field(None, description='5 or 10 seconds')
|
|
aspect_ratio: Optional[str] = Field(None, description='16:9, 9:16, or 1:1')
|
|
|
|
|
|
class MinimaxRequest(BaseModel):
|
|
prompt: str = Field(..., min_length=1, max_length=4000)
|
|
first_frame_image: Optional[str] = Field(None, description='Base64 or URL of first frame')
|
|
last_frame_image: Optional[str] = Field(None, description='Base64 or URL of last frame')
|
|
|
|
|
|
class SeedanceRequest(BaseModel):
|
|
prompt: str = Field(..., min_length=1, max_length=2000)
|
|
image: Optional[str] = Field(None, description='Base64 or URL of input image')
|
|
duration: Optional[str] = Field(None, description='5 or 10 seconds')
|