# delete_feedback_config

> **Method** in `langsmith`

📖 [View in docs](https://reference.langchain.com/python/langsmith/client/Client/delete_feedback_config)

Delete a feedback configuration.

This performs a soft delete. The configuration can be recreated
later with the same key.

## Signature

```python
delete_feedback_config(
    self,
    feedback_key: str,
) -> None
```

## Description

**Example:**

.. code-block:: python

from langsmith import Client

client = Client()
client.delete_feedback_config("user-rating")

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `feedback_key` | `str` | Yes |  The feedback key of the configuration to delete. |

---

[View source on GitHub](https://github.com/langchain-ai/langsmith-sdk/blob/ce9e9e8973442b33e98ec3ce1b9c2dd3f58a43a7/python/langsmith/client.py#L8187)