Content type for indexing and search pipeline selection.
| 18 | |
| 19 | |
| 20 | class ContentType(str, Enum): |
| 21 | """Content type for indexing and search pipeline selection.""" |
| 22 | |
| 23 | CODE = "code" |
| 24 | DOCS = "docs" |
| 25 | CONFIG = "config" |
| 26 | |
| 27 | |
| 28 | @dataclass(frozen=True, slots=True) |
no outgoing calls
no test coverage detected