AI-Chat-Tool is a tool that brings ChatGPT to the command line.
This repo is for the Python package ai-chat-tool: https://pypi.org/project/ai-chat-tool/
pip install ai-chat-tool
To use this tool you will need a ChatGPT api key.
- --api-key
- (required) ChatGPT api key to use to access ChatGPT.
- --file
- (optional) File to write ChatGPT response to. Pass just the file(test.py) or the path and file(/first_dir/second_dir/test.py)
- --max-tokens
- (optional) The maximum number of tokens to generate in the completion. Default=7
- --temperature
- (optional) What sampling temperature to use. Default=0
- --line
- (optional) Line on a file where ChatGPT output will start.
- Use AI-Chat-Tool to create a Python function that checks for even numbers
CLI
python -m ai-chat-tool --api-key=$CHATGPTKEY --file=test.py --max-tokens=2000 --line=4
What can I do for you today?: Can you create a python function that checks for even numbers?
Text written to test.py
File created by AI-Chat-Tool
test.py
def check_even(number):
if number % 2 == 0:
return True
else:
return False