docs
0
# Feedback & Collections
1
2
User feedback collection and data organization capabilities for improving AI applications and gathering insights.
3
4
## Capabilities
5
6
```python { .api }
7
class Feedback:
8
def create(self, **kwargs): ...
9
def list(self, **kwargs): ...
10
def retrieve(self, **kwargs): ...
11
12
class Collections:
13
def create(self, **kwargs): ...
14
def list(self, **kwargs): ...
15
def retrieve(self, **kwargs): ...
16
def update(self, **kwargs): ...
17
def delete(self, **kwargs): ...
18
```