Metadata-Version: 2.1
Name: ai-chat-tool
Version: 0.0.2
Summary: AI-Chat-Tool is a tool that brings ChatGPT to the command line
Author: matoval (Matthew Sandoval)
Author-email: <matovalcode@gmail.com>
Keywords: chatgpt,ai,chat
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE

# AI-Chat-Tool/nAI-Chat-Tool is a tool that brings ChatGPT to the command line./n/nTo use this tool you will need a ChatGPT api key./n/n### Options/n- **--api-key**/n    - (required) ChatGPT api key to use to access ChatGPT./n- **--file**/n    - (optional) File to write ChatGPT response to./n- **--max-tokens**/n    - (optional) The maximum number of tokens to generate in the completion./n- **--temperature**/n    - (optional) What sampling temperature to use./n/n### Example/n- Use AI-Chat-Tool to create a Python function that checks for even numbers/n/n**CLI**/n```/nai-chat-tool --api-key=$CHATGPTKEY --file=test.py --max-tokens=2000/n```/n```/nWhat can I do for you today?: Can you create a pyhton function that checks for even numbers?/nText written to test.py/n```/n\/n\/nFile created by AI-Chat-Tool\/n**test.py**/n```python/ndef check_even(number):/n    if number % 2 == 0:/n        return True/n    else:/n        return False/n```
