Metadata-Version: 2.4
Name: langchain-caching
Version: 0.1.0
Summary: A minimal caching utility
Author: Max
Project-URL: Homepage, https://github.com/yourusername/langchain-caching
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# langchain-caching

A minimal caching utility.

## Installation

```bash
pip install langchain-caching
```

## Usage

```python
from langchain_caching import create_cache_point

result = create_cache_point()
print(result)  # {"cachePoint": {"type": "default"}}
```
