You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Querying CPython — 41 million characters of source code:
191
187
192
-
`find_symbol` returns 61-68 characters regardless of whether the project is 7K lines or 707K lines. Response size scales with the answer, not the codebase.
Django's `get_change_impact("AppConfig")` found 65 direct dependents and 5,078 transitive dependents — the kind of query that's impossible without a dependency graph. Use `max_direct` and `max_transitive` to cap output to your token budget.
196
+
`find_symbol` returns 54-67 characters regardless of whether the project is 7K lines or 1.1M lines. Response size scales with the answer, not the codebase.
197
+
198
+
`get_change_impact("TestCase")` on CPython found **154 direct dependents and 492 transitive dependents** in 0.45ms — the kind of query that's impossible without a dependency graph. Use `max_direct` and `max_transitive` to cap output to your token budget.
195
199
196
200
### Query Response Time
197
201
198
-
All targeted queries return in sub-millisecond time, even on Django's 707K lines:
202
+
All targeted queries return in sub-millisecond time, even on CPython's 1.1M lines:
0 commit comments