{"info":{"title":"Longcat Text-to-Video","version":"0.1.0"},"openapi":"3.0.2","components":{"schemas":{"Input":{"type":"object","title":"Input","required":["prompt"],"properties":{"fps":{"type":"integer","title":"FPS","default":15,"maximum":60,"minimum":1,"x-order":5,"description":"The frame rate of the generated video."},"seed":{"type":"integer","title":"Seed","default":0,"x-order":10,"description":"The seed for the random number generator."},"prompt":{"type":"string","title":"Prompt","x-order":0,"description":"The prompt to guide the video generation."},"num_frames":{"type":"integer","title":"Number of Frames","default":162,"maximum":961,"minimum":17,"x-order":1,"description":"The number of frames to generate."},"aspect_ratio":{"allOf":[{"$ref":"#/components/schemas/aspect_ratio"}],"title":"Aspect Ratio","default":"16:9","x-order":4,"description":"The aspect ratio of the generated video."},"video_quality":{"allOf":[{"$ref":"#/components/schemas/video_quality"}],"title":"Video Quality","default":"high","x-order":6,"description":"The quality of the generated video."},"video_write_mode":{"allOf":[{"$ref":"#/components/schemas/video_write_mode"}],"title":"Video Write Mode","default":"balanced","x-order":3,"description":"The write mode of the generated video."},"video_output_type":{"allOf":[{"$ref":"#/components/schemas/video_output_type"}],"title":"Video Output Type","default":"X264 (.mp4)","x-order":2,"description":"The output type of the generated video."},"num_inference_steps":{"type":"integer","title":"Number of Inference Steps","default":12,"maximum":16,"minimum":2,"x-order":9,"description":"The number of inference steps to use."},"enable_safety_checker":{"type":"boolean","title":"Enable Safety Checker","default":true,"x-order":8,"disabled":true,"description":"Whether to enable safety checker. Can't be disabled in web UI."}}},"Output":{"type":"string","title":"Output","format":"uri"},"Status":{"enum":["starting","processing","succeeded","failed","canceled"],"type":"string","title":"Status","description":"The status of the prediction."},"aspect_ratio":{"enum":["16:9","9:16","1:1"],"type":"string","title":"Aspect Ratio","description":"The aspect ratio of the generated video."},"video_quality":{"enum":["low","medium","high","maximum"],"type":"string","title":"Video Quality","description":"Overall quality / bitrate preset for the generated video."},"ValidationError":{"type":"object","title":"ValidationError","required":["loc","msg","type"],"properties":{"loc":{"type":"array","items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}}},"video_write_mode":{"enum":["fast","balanced","small"],"type":"string","title":"Video Write Mode","description":"Performance vs output size tradeoff during encoding."},"PredictionRequest":{"type":"object","title":"PredictionRequest","properties":{"input":{"$ref":"#/components/schemas/Input"},"webhook":{"type":"string","title":"Webhook URL","format":"uri","description":"An optional URL to send a POST request to when the prediction is complete."}}},"video_output_type":{"enum":["X264 (.mp4)","VP9 (.webm)","PRORES4444 (.mov)","GIF (.gif)"],"type":"string","title":"Video Output Type","description":"Desired output container and codec."},"PredictionResponse":{"type":"object","title":"PredictionResponse","properties":{"id":{"type":"string","title":"Prediction ID"},"logs":{"type":"string","title":"Logs","default":""},"error":{"type":"string","title":"Error","nullable":true},"input":{"$ref":"#/components/schemas/Input"},"output":{"$ref":"#/components/schemas/Output"},"status":{"$ref":"#/components/schemas/Status"},"created_at":{"type":"string","title":"Created At","format":"date-time"},"completed_at":{"type":"string","title":"Completed At","format":"date-time","nullable":true}}},"HTTPValidationError":{"type":"object","title":"HTTPValidationError","properties":{"detail":{"type":"array","items":{"$ref":"#/components/schemas/ValidationError"},"title":"Detail"}}}}}}