<?php
namespace Infrastructure\AI;
interface AIClientInterface
{
public function execute(string $prompt, array $options = []): AIResponse;
public function isAvailable(): bool;
public function getClientName(): string;
public function getModelName(): string;
}