Delete a feedback configuration.
This performs a soft delete. The configuration can be recreated later with the same key.
delete_feedback_config(
self,
feedback_key: str,
) -> NoneExample:
.. code-block:: python
from langsmith import Client
client = Client() client.delete_feedback_config("user-rating")
| Name | Type | Description |
|---|---|---|
feedback_key* | str | The feedback key of the configuration to delete. |