[docs]classOpenLM(BaseOpenAI):"""OpenLM models."""@classmethoddefis_lc_serializable(cls)->bool:returnFalse@propertydef_invocation_params(self)->Dict[str,Any]:return{**{"model":self.model_name},**super()._invocation_params}@pre_initdefvalidate_environment(cls,values:Dict)->Dict:try:importopenlmvalues["client"]=openlm.CompletionexceptImportError:raiseImportError("Could not import openlm python package. ""Please install it with `pip install openlm`.")ifvalues["streaming"]:raiseValueError("Streaming not supported with openlm")returnvalues