https://github.com/tsunrise/nlterm
Integrate ChatGPT in your terminal
https://github.com/tsunrise/nlterm
chatgpt openai shell terminal
Last synced: 2 months ago
JSON representation
Integrate ChatGPT in your terminal
- Host: GitHub
- URL: https://github.com/tsunrise/nlterm
- Owner: tsunrise
- Created: 2023-04-09T05:43:21.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-09T07:01:28.000Z (about 3 years ago)
- Last Synced: 2025-09-07T11:52:52.909Z (10 months ago)
- Topics: chatgpt, openai, shell, terminal
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `nlterm`: Integrate ChatGPT into your terminal
## Install
```
pip install nlterm
```
## Examples
- Example 1
````
> nlterm
Instruction: reorgnize this folder to like a pypi project. That is I need to put scripts in `src` folder, and have a basic `pyproject.toml`
````
This is the output:
````
```
mkdir src
mv *.py src
touch pyproject.toml
```
Execute? (y/n):
````
- Example 2
````
> nlterm
Instruction: Install the whl file
````
This is the output:
````
```
pip install nlterm-0.0.2-py3-none-any.whl
```
Execute? (y/n):
````
- Example 3
Suppose we have files `Chest_xray_report.pdf` and `immunization.pdf` in the current directory.
````
> nlterm
Instruction: merge my chest ray report and immunization
````
This is the output:
````
```
pdftk Chest_xray_report.pdf immunization.pdf output merged_file.pdf
```
Execute? (y/n):
````