Return a dictionary of the LLM.
(self, **kwargs: Any)
| 1179 | """Return type of llm.""" |
| 1180 | |
| 1181 | def dict(self, **kwargs: Any) -> Dict: |
| 1182 | """Return a dictionary of the LLM.""" |
| 1183 | starter_dict = dict(self._identifying_params) |
| 1184 | starter_dict["_type"] = self._llm_type |
| 1185 | return starter_dict |
| 1186 | |
| 1187 | def save(self, file_path: Union[Path, str]) -> None: |
| 1188 | """Save the LLM. |
no outgoing calls