llm icon indicating copy to clipboard operation
llm copied to clipboard

Enhancement idea: implement a self help

Open stoerr opened this issue 9 months ago • 0 comments

Hi!

Thanks for your amazing tool!

By the way: since it has so many features - how about implementing a kind of self help where you can ask the tool a question about it's usage, by feeding the help texts it has stored anyway and the users question to an LLM?

Not quite sure how that would best be done for llm, but I just implemented that for my AIGenPipeline https://aigenpipeline.stoerr.net/ in a couple of minutes by embedding the raw markdown files for the website into the command line client and feeding those to the backend LLM the tool uses (https://github.com/stoerr/AIGenPipeline/pull/24) : e.g.

    aigenpipeline --helpai "Make a command line where I can overwrite the file out.txt by executing prompt.txt on input.txt , no version comment."

gives you

    To overwrite the file `out.txt` by executing `prompt.txt` on `input.txt` without adding a version comment, you can use the following command line:
    
    ```
    aigenpipeline -wo -o out.txt -p prompt.txt input.txt
    ```

stoerr avatar May 05 '24 16:05 stoerr