We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc32a82 commit 8605f31Copy full SHA for 8605f31
IPython/terminal/interactiveshell.py
@@ -479,6 +479,11 @@ class to use for the `NavigableAutoSuggestFromHistory` to request
479
@observe("llm_provider_class")
480
def _llm_provider_class_changed(self, change):
481
provider_class = change.new
482
+ if provider_class is not None:
483
+ warn(
484
+ "TerminalInteractiveShell.llm_provider_class is a provisional"
485
+ " API as of IPython 8.32, and may change without warnings."
486
+ )
487
self._llm_provider_class = provider_class
488
self._set_autosuggestions()
489
0 commit comments