Your AI second brain. Self-hostable. Get answers from the web or your docs. Build custom agents, schedule automations, do deep research. Turn any online or local LLM into your personal, autonomous AI (e.g gpt, claude, gemini, llama, qwen, mistral).
This pull request implements the recursive re-chat functionality as mentioned in issue #819.
I have used an array userMessages to store the user's input messages and user can toggle through the messages using up and down arrow key by making a new function handleArrowKeys
i ran git pull before commiting changes.
I have ran pre-commit install -t pre-push -t pre-commit before creating this pr.
Also i ran pytest and ``mypy```
There were some test failing, but none of them were due to my changes.
hey @sabaimran , i have added the other half of the feature mentioned in issue #819, just to get an idea of the code and structure. Will soon update about the first feature
This pull request implements the recursive re-chat functionality as mentioned in issue #819. I have used an array
userMessages
to store the user's input messages and user can toggle through the messages using up and down arrow key by making a new functionhandleArrowKeys
i ran
git pull
before commiting changes. I have ranpre-commit install -t pre-push -t pre-commit
before creating this pr. Also i ranpytest
and ``mypy``` There were some test failing, but none of them were due to my changes.