model = $model; $this->prompt = $prompt; $this->apiKey = $apiKey; } /** * {@inheritDoc} */ public function getApiKey(): string { return $this->apiKey; } /** * {@inheritDoc} */ public function getPrompt(): string { return $this->prompt; } /** * {@inheritDoc} */ public function getModel(): string { return $this->model; } }