├── .env.example ├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs └── demo.gif ├── reterm ├── __init__.py ├── cli.py ├── config.py ├── llm.py ├── shell.py └── welcome.py └── setup.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/README.md -------------------------------------------------------------------------------- /docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/docs/demo.gif -------------------------------------------------------------------------------- /reterm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reterm/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/reterm/cli.py -------------------------------------------------------------------------------- /reterm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/reterm/config.py -------------------------------------------------------------------------------- /reterm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/reterm/llm.py -------------------------------------------------------------------------------- /reterm/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/reterm/shell.py -------------------------------------------------------------------------------- /reterm/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/reterm/welcome.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pie0902/reTermAI/HEAD/setup.py --------------------------------------------------------------------------------