enabled = trim($baseUrl) !== '' && trim($apiKey) !== ''; } /** * @param array $options */ public function stream(AgentContext $context, array $options = []): \Generator { if (! $this->enabled) { return (new DummyAgentProvider())->stream($context, $options); } return $this->adapter->stream($context, $options); } }