# DocumentIntelligenceParser

> **Class** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/document_loaders/parsers/pdf/DocumentIntelligenceParser)

Loads a PDF with Azure Document Intelligence
(formerly Form Recognizer) and chunks at character level.

## Signature

```python
DocumentIntelligenceParser(
    self,
    client: Any,
    model: str,
)
```

## Extends

- `BaseBlobParser`

## Constructors

```python
__init__(
    self,
    client: Any,
    model: str,
)
```

| Name | Type |
|------|------|
| `client` | `Any` |
| `model` | `str` |


## Properties

- `client`
- `model`

## Methods

- [`lazy_parse()`](https://reference.langchain.com/python/langchain-community/document_loaders/parsers/pdf/DocumentIntelligenceParser/lazy_parse)

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/a6a6079511ac8a5c1293337f88096b8641562e77/libs/community/langchain_community/document_loaders/parsers/pdf.py#L1638)