diff --git a/openai_patch/__init__.py b/openai_patch/__init__.py
index edfa2764d8aa75f254261155f58a0169e6a3c818..62f031fd410cf0ae350fab2c15470037afb9ddca 100644
--- a/openai_patch/__init__.py
+++ b/openai_patch/__init__.py
@@ -16,7 +16,8 @@ async def async_setup(hass, config):
     async def async_process(self, user_input: conversation.ConversationInput) -> conversation.ConversationResult:
         _LOGGER.debug("OpenAIConversationEntity.async_process")
         client = self.entry.runtime_data
-        _LOGGER.debug(client.base_url)
+        _LOGGER.debug(dir(client))
+        _LOGGER.debug(vars(client))
         result = await original(self, user_input)
         return result