# StoreConfig

> **Class** in `langgraph_cli`

📖 [View in docs](https://reference.langchain.com/python/langgraph-cli/schemas/StoreConfig)

Configuration for the built-in long-term memory store.

This store can optionally perform semantic search. If you omit `index`,
the store will just handle traditional (non-embedded) data without vector lookups.

## Signature

```python
StoreConfig()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    index: IndexConfig | None,
    ttl: TTLConfig | None,
)
```

| Name | Type |
|------|------|
| `index` | `IndexConfig \| None` |
| `ttl` | `TTLConfig \| None` |


## Properties

- `index`
- `ttl`

---

[View source on GitHub](https://github.com/langchain-ai/langgraph/blob/d27d4b2d9895a4aa83170b4aaa135878f99c7fd6/libs/cli/langgraph_cli/schemas.py#L83)