Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 1 addition & 23 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,29 +156,7 @@ ______________________________________________________________________

### General structure

The repository contains a Python package called Cachier that provides persistent function caching with several backends:

cachier/
├── src/cachier/ # Main library code
│ ├── __init__.py
│ ├── core.py # Decorator logic, backend selection
│ ├── cores/ # Backend implementations
│ │ ├── pickle.py
│ │ ├── memory.py
│ │ ├── mongo.py
│ │ ├── sql.py
│ │ ├── redis.py
│ │ └── base.py
│ ├── config.py # Global/default config
│ ├── \_types.py # Type definitions
│ ├── _version.py
│ └── __main__.py
├── tests/ # Pytest-based tests, backend-marked
│ ├── test_\*.py
│ └── \*\_requirements.txt # Backend-specific test requirements
├── examples/ # Usage examples
├── README.rst # Main documentation
└── ...
For an up-to-date overview of the repository layout, see `README.rst` in the project root.

### Key functionality

Expand Down
2 changes: 2 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ ______________________________________________________________________

The repository contains a Python package called Cachier that provides persistent function caching with several backends:

```
cachier/
├── src/cachier/ # Main library code
│ ├── __init__.py
Expand All @@ -179,6 +180,7 @@ cachier/
├── examples/ # Usage examples
├── README.rst # Main documentation
└── ...
```

### Key functionality

Expand Down