gpt-5.1 exists as a constructor default in GPTModel, but no current construction path leaves that default in place.
The only call sites are:
__init__.py:142 - which via CRISP_API_MODEL.
models/__init__.py:22 - which is selected via --llm-model matched to gpt*.
An empty string simply fails model selection, so there is no path that constructs GPTModel implicitly with gpt-5.1.
gpt-5.1exists as a constructor default inGPTModel, but no current construction path leaves that default in place.The only call sites are:
__init__.py:142- which viaCRISP_API_MODEL.models/__init__.py:22- which is selected via--llm-modelmatched togpt*.An empty string simply fails model selection, so there is no path that constructs
GPTModelimplicitly withgpt-5.1.