(binding: Any)
| 1033 | |
| 1034 | |
| 1035 | def _provider_log_label(binding: Any) -> str: |
| 1036 | binding_name = str(binding) |
| 1037 | return _PROVIDER_LOG_LABELS.get( |
| 1038 | binding_name, binding_name.replace("_", " ").title() |
| 1039 | ) |
| 1040 | |
| 1041 | |
| 1042 | def _log_role_provider_options(rag: Any) -> None: |
no test coverage detected