Show HN: TERMy – A fast terminal assistant that does not use LLMs
41–50 of 50 posts
Re: Show HN: TERMy – A fast terminal assistant that does not use LLMs
#42So is this kind of like a super-powered tealdeer ?
tealdeer just shows you a cheatsheet, termy can effectively take a prompt and execute a command, example: $ termy create file test.txt and write Hello TERMy | template match | Confidence: 100.00% Thinking: Ok, I am asked to create the file test.txt. echo 'Hello' > 'test.txt' && termy_set_context 'active_file' 'test.txt' Description: Writes Hello in file test.txt. Response: Affirmative Now that I think about it, I sho…
Re: Show HN: TERMy – A fast terminal assistant that does not use LLMs
#43Very interesting project, I like it. Just wanted to clarify though the sentiment analysis is just the count of stripped words and used to tag things with the emoji? I was initially expecting it to be a part of the actual command construction process (even though I couldn't figure out how that would be relevant) given how it was listed.
For now it is a bit of a gimmick I agree :)
Re: Show HN: TERMy – A fast terminal assistant that does not use LLMs
#44Hi, I am the creator, feel free to ask any questions :) What do you think about it?
love the idea/simplicity of this tool!
Re: Show HN: TERMy – A fast terminal assistant that does not use LLMs
#45Hi, I am the creator, feel free to ask any questions :) What do you think about it?
is it supported to have it propose a command for approval rather than running autmatically? in the YT video it looks likw it ran the cpu temp command on its own love the idea/simplicity of this tool!
Re: Show HN: TERMy – A fast terminal assistant that does not use LLMs
#46Great, simple idea applied in a novel way. Peak engineering if I ever seen it and I don't even have to look at the code. Nice work!
Re: Show HN: TERMy – A fast terminal assistant that does not use LLMs
#47So is this kind of like a super-powered tealdeer ?
tealdeer just shows you a cheatsheet, termy can effectively take a prompt and execute a command, example: $ termy create file test.txt and write Hello TERMy | template match | Confidence: 100.00% Thinking: Ok, I am asked to create the file test.txt. echo 'Hello' > 'test.txt' && termy_set_context 'active_file' 'test.txt' Description: Writes Hello in file test.txt. Response: Affirmative Now that I think about it, I sho…
Re: Show HN: TERMy – A fast terminal assistant that does not use LLMs
#48Re: Show HN: TERMy – A fast terminal assistant that does not use LLMs
#49Hi, I am the creator, feel free to ask any questions :) What do you think about it?
Cool, but system and user should probably stick to short, clear commands. E.g., I see you do some anaphora resolution (in particular: find what "it" refers to), but in a complex dialog, the human intention can differ from the machine's understanding. That will give problems when you end your dialog with "delete it". Adding more sentences to your data set will slowly degrade performance. It's a delicate system. Source…