gitextract_ni1c58zi/ ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── codespell.yml │ ├── docker.yml │ ├── lint_test.yml │ └── release.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── scripts/ │ ├── format.sh │ ├── lint.sh │ └── test.sh ├── sgpt/ │ ├── __init__.py │ ├── __main__.py │ ├── __version__.py │ ├── app.py │ ├── cache.py │ ├── config.py │ ├── function.py │ ├── handlers/ │ │ ├── __init__.py │ │ ├── chat_handler.py │ │ ├── default_handler.py │ │ ├── handler.py │ │ └── repl_handler.py │ ├── integration.py │ ├── llm_functions/ │ │ ├── __init__.py │ │ ├── common/ │ │ │ └── execute_shell.py │ │ ├── init_functions.py │ │ └── mac/ │ │ └── apple_script.py │ ├── printer.py │ ├── role.py │ └── utils.py └── tests/ ├── __init__.py ├── _integration.py ├── conftest.py ├── test_code.py ├── test_default.py ├── test_roles.py ├── test_shell.py └── utils.py