{"openapi":"3.1.0","info":{"title":"Media Generator API","description":"Generate audio, video, image, and PPT from text","version":"1.0.0"},"paths":{"/api/v1/audio/generate":{"post":{"tags":["Audio"],"summary":"Generate Audio Endpoint","operationId":"generate_audio_endpoint_api_v1_audio_generate_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AudioInput"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/video/generate":{"post":{"tags":["Video"],"summary":"Generate Video","operationId":"generate_video_api_v1_video_generate_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/VideoInput"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/image/generate":{"post":{"tags":["Image"],"summary":"Generate Image","operationId":"generate_image_api_v1_image_generate_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ImageInput"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/ppt/generate":{"post":{"tags":["PPT"],"summary":"Generate Ppt","operationId":"generate_ppt_api_v1_ppt_generate_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PPTInput"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/metrics/evaluate/bleu":{"post":{"tags":["Metrics"],"summary":"Compute Bleu","operationId":"compute_bleu_api_v1_metrics_evaluate_bleu_post","parameters":[{"name":"reference","in":"query","required":true,"schema":{"type":"string","title":"Reference"}},{"name":"candidate","in":"query","required":true,"schema":{"type":"string","title":"Candidate"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/metrics/evaluate/clipscore":{"post":{"tags":["Metrics"],"summary":"Compute Clip Score","operationId":"compute_clip_score_api_v1_metrics_evaluate_clipscore_post","parameters":[{"name":"reference","in":"query","required":true,"schema":{"type":"string","title":"Reference"}},{"name":"candidate","in":"query","required":true,"schema":{"type":"string","title":"Candidate"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}},"/api/v1/download/":{"get":{"tags":["Download"],"summary":"Download File","operationId":"download_file_api_v1_download__get","parameters":[{"name":"file_path","in":"query","required":true,"schema":{"type":"string","description":"Relative path from project root","title":"File Path"},"description":"Relative path from project root"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}},"security":[{"HTTPBearer":[]}]}}},"components":{"schemas":{"AudioInput":{"properties":{"text":{"type":"string","title":"Text"},"voice":{"type":"string","title":"Voice","default":"default"},"language":{"type":"string","title":"Language","default":"en"}},"type":"object","required":["text"],"title":"AudioInput"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"ImageInput":{"properties":{"prompt":{"type":"string","title":"Prompt"},"style":{"type":"string","title":"Style","default":"default"}},"type":"object","required":["prompt"],"title":"ImageInput"},"PPTInput":{"properties":{"slides":{"items":{"$ref":"#/components/schemas/Slide"},"type":"array","title":"Slides"}},"type":"object","required":["slides"],"title":"PPTInput"},"Slide":{"properties":{"title":{"type":"string","title":"Title"},"content":{"type":"string","title":"Content"}},"type":"object","required":["title","content"],"title":"Slide"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"},"VideoInput":{"properties":{"script":{"type":"string","title":"Script"},"duration":{"type":"integer","title":"Duration","default":10}},"type":"object","required":["script"],"title":"VideoInput"}},"securitySchemes":{"HTTPBearer":{"type":"http","scheme":"bearer"}}}}