Commits
Click on a commit to change the comparison rangefix: Enable save method for ChatPromptTemplate by removing NotImplementedError override
This PR fixes Issue #32637 where ChatPromptTemplate's save method was raising
NotImplementedError instead of inheriting the working implementation from
BasePromptTemplate.
The fix removes the override that was preventing inheritance of the parent class's
functional save method, allowing ChatPromptTemplate instances to be saved to
JSON/YAML files as expected.
Fixes #32637