├── .github └── workflows │ └── pypi.yml ├── .gitignore ├── README.md ├── assets └── termGPT.gif ├── chatgpt_history.json ├── funcs.py ├── pyproject.toml ├── termgpt ├── __init__.py ├── chat.py ├── history.py ├── llm.py ├── tools.py └── version.py └── uv.lock /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/README.md -------------------------------------------------------------------------------- /assets/termGPT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/assets/termGPT.gif -------------------------------------------------------------------------------- /chatgpt_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/chatgpt_history.json -------------------------------------------------------------------------------- /funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/funcs.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/pyproject.toml -------------------------------------------------------------------------------- /termgpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /termgpt/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/termgpt/chat.py -------------------------------------------------------------------------------- /termgpt/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/termgpt/history.py -------------------------------------------------------------------------------- /termgpt/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/termgpt/llm.py -------------------------------------------------------------------------------- /termgpt/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/termgpt/tools.py -------------------------------------------------------------------------------- /termgpt/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.2" 2 | -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcapelle/termGPT/HEAD/uv.lock --------------------------------------------------------------------------------