# 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/7c10a5fa327f6aaaf7c932822a9e5d144891406e/libs/community/langchain_community/document_loaders/parsers/pdf.py#L1638)