gitextract_roayer6_/ ├── .flake8 ├── .gitignore ├── Contributing.md ├── README.md ├── app.py ├── config.py ├── core/ │ ├── __init__.py │ ├── controller.py │ ├── model.py │ └── views/ │ ├── __init__.py │ ├── floating_window.py │ ├── styling/ │ │ ├── __init__.py │ │ └── floating_window_style.py │ ├── system_tray.py │ └── text_processing.py ├── extensions/ │ ├── __init__.py │ ├── basics/ │ │ └── __init__.py │ ├── langraph/ │ │ ├── __init__.py │ │ └── langraph.py │ ├── ollama/ │ │ ├── __init__.py │ │ └── example.py │ ├── openai/ │ │ ├── __init__.py │ │ └── utils.py │ └── variables.py ├── makefile ├── pyproject.toml ├── tests/ │ ├── __init__.py │ └── test_dummy.py └── utils/ └── __init__.py