D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
developers.ghanempharmacy.com
/
Modules
/
AI
/
app
/
Contracts
/
Filename :
PromptTemplateInterface.php
back
Copy
<?php namespace Modules\AI\app\Contracts; interface PromptTemplateInterface { public function build(?string $context = null, ?string $langCode = null, ?string $description = null, ?array $options = null): string; public function getType(): string; }