codebase-recall 0.7.3

CLI based application for codebase dumper for LLMs and fast review/recall project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""The receiver's type comes from a call in another module.

`s` is only typed by what `make_store()` returns, which no AST walk can see.
Name-based scoring then prefers `Cache.get` — it is the `get` this file
imports a path to — and gets the answer exactly wrong.
"""

from cache import Cache
from factory import make_store


def run():
    s = make_store()
    return s.get("k")


def clear(c: Cache):
    return c.get("k")