📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 10:08:44
📂
/ (Root)
/
home
/
xeqi7597
/
public_html
/
wp-includes
/
php-ai-client
/
src
/
Providers
/
Models
/
VideoGeneration
/
Contracts
📍 /home/xeqi7597/public_html/wp-includes/php-ai-client/src/Providers/Models/VideoGeneration/Contracts
🔄 Refresh
✏️
Editing: VideoGenerationModelInterface.php
Writable
<?php declare (strict_types=1); namespace WordPress\AiClient\Providers\Models\VideoGeneration\Contracts; use WordPress\AiClient\Messages\DTO\Message; use WordPress\AiClient\Results\DTO\GenerativeAiResult; /** * Interface for models that support video generation. * * Provides synchronous methods for generating videos from prompts. * * @since 1.3.0 */ interface VideoGenerationModelInterface { /** * Generates videos from a prompt. * * @since 1.3.0 * * @param list<Message> $prompt Array of messages containing the video generation prompt. * @return GenerativeAiResult Result containing generated videos. */ public function generateVideoResult(array $prompt): GenerativeAiResult; }
💾 Save Changes
❌ Cancel