(self, profile: str | None = None, step_context: Mapping[str, Any] | None = None)
| 185 | ) |
| 186 | |
| 187 | def _get_llm_client(self, profile: str | None = None, step_context: Mapping[str, Any] | None = None) -> Any: |
| 188 | base_client = self._get_llm_base_client(profile) |
| 189 | return self._wrap_llm_client(base_client, profile=profile, step_context=step_context) |
| 190 | |
| 191 | @property |
| 192 | def llm_client(self) -> Any: |
no test coverage detected