I'm building a modular CLI assistant named orion. Today I built the core of the assistant
main.py is the entry point of the program. When it runs, it starts a loop that continuously takes user input. The input is first cleaned using strip() and then passed to parser.py.
The parser processes the input by splitting it into three parts:
command
action
arguments
These parsed values are returned to main.py, which then sends them to dispatcher.py.
That's all for today and I planned to build working modules tomorrow.
Here's the github link : "https://github.com/Aegis-Specter/Orion"
Top comments (0)