Generate cmd line options on the cmd line. The web interface is a quick trial ground, but the real productivity boost is with the cli with integration in-place at the prompt.
As of now, it's very basic and working directly of the PaLM Text Bison model, but I'm adding more features and fine tuning. Also, trying to make it usable by enterprises.
E.g.
$ gencmd find txt files that contain the text hello
find . -type f -name "*.txt" | xargs grep -i hello
find . -type f -name "*.txt" -exec grep -i "hello" {} \;
find . -type f -name "*.txt" -exec grep -i hello {} \;
$ gencmd -c grep find txt files that contain the text hello
grep -r hello *.txt
grep -r "hello" \*.txt
Generate cmd line options on the cmd line. The web interface is a quick trial ground, but the real productivity boost is with the cli with integration in-place at the prompt.
As of now, it's very basic and working directly of the PaLM Text Bison model, but I'm adding more features and fine tuning. Also, trying to make it usable by enterprises.
E.g.
If you want to know more about how I went about building it, I've written about it here: https://medium.com/@sathishvj/gencmd-generate-commands-with-...