|
|
|
|
|
by HeapsGood
107 days ago
|
|
But your ‘lookups’ count doesn’t factor-in nested lookups incurred by ‘include’ directives. Isn’t that the whole point of this? And your ‘security grade’ seems to be incongruous with the look-up count. And could you detail your use of LLMs in this? It’s straightforward DNS queries, right? I don’t see options for the ‘safety toggles’ you mentioned. |
|
Nested Lookups: You are 100% right. The current UI counter is 'naive' (it just regexes the top-level record). The backend (when you click Fix) does the full recursive resolution to find the hidden depth. I will push a patch to make the frontend counter recursive so it matches the actual problem.
Why LLM: I use standard Node dns libraries for the actual resolution (obviously). The LLM is used as a 'fuzzy parser' to re-assemble the broken pieces and generate the explanation text/diffs. It handles syntax errors in the original record gracefully where my strict regex parsers were failing.
Safety Toggles: They currently only appear after you click the 'Fix It' button (in the result modal). That’s a UX fail on my part—I'll move them to the main view so they are visible upfront.
Appreciate you digging in.