Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
11–20 of 97 posts
Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#12Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#13I don't know about cost saving, but if it's keeping the context size down I've had a lot better results using subagents to keep a higher order conversation clean for longer.
Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#14Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#15I've tried rtx and lean-ctx and these tools seem to end up confusing the agent more than helping. Any saving is irrelevant if the agent decides to work around the tool and makes even more calls than it would otherwise. I don't know about cost saving, but if it's keeping the context size down I've had a lot better results using subagents to keep a higher order conversation clean for longer.
Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#16Pro tip they worked well for me with response truncation: in the truncated output, say that the full text is available in /tmp/whereever.txt - that way, the llm will be able to query and read more using built in tools without reissuing the big tool call.
Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#17I am thinking that a small tool that simply refuses to pass large CLI output to the LLM and warns it to filter the results before reading would achieve this better as the LLM would be forced into thinking and writting the filter itself.
Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#18The docs are missing any examples of what this does, instead showing _how_ it works - and only for the codebase itself, rather than the behavior of the app. What would be useful: - examples of text that can be filtered, and why that would be valuable - a data flow diagram of runtime behavior, showing how filtering removes unnecessary context
Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#19Would this have any impact on the response quality from the agent?
Re: Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens
#20Would this have any impact on the response quality from the agent?