DeepchecksLLMClient.update_custom_property#
- DeepchecksLLMClient.update_custom_property(app_name: str, old_property_name: str, new_property_name: str | None = None, description: str | None = None, force_update: bool = False) None #
Update a custom property for the current application.
- Parameters:
- app_namestr
Application name
- old_property_namestr
Name of the custom property to update
- new_property_namestr, optional
New name for the custom property
- descriptionstr, optional
Description of the custom property (if none provided, the description will not be updated)
- force_updatebool, default False
This means that renaming a custom property in type A will also rename the property defined with the same name in type B, if it exists. If force_update is set to False and more than one type has the same property, an error will be raised.
- Returns:
- None