# LLMImageBlobParser

> **Class** in `langchain_community`

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

Parser for analyzing images using a language model (LLM).

## Signature

```python
LLMImageBlobParser(
    self,
    *,
    model: BaseChatModel,
    prompt: str = _PROMPT_IMAGES_TO_DESCRIPTION,
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `model` | `BaseChatModel` | Yes |  The language model to use for analysis. |
| `prompt` | `str` | No |  The prompt to provide to the language model. (default: `_PROMPT_IMAGES_TO_DESCRIPTION`) |

## Extends

- `BaseImageBlobParser`

## Constructors

```python
__init__(
    self,
    *,
    model: BaseChatModel,
    prompt: str = _PROMPT_IMAGES_TO_DESCRIPTION,
)
```

| Name | Type |
|------|------|
| `model` | `BaseChatModel` |
| `prompt` | `str` |


## Properties

- `model`
- `prompt`

---

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