Metadata-Version: 2.1
Name: chatgpterminal
Version: 0.1.6
Summary: 
Author: Artur Dernst
Author-email: artur.dernst@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: colorama (>=0.4.6,<0.5.0)
Requires-Dist: openai (==0.27.8)
Requires-Dist: pygments (>=2.17.2,<3.0.0)
Description-Content-Type: text/markdown

# Terminal CLI for GPT models

## Prerequisites

- Get access to the OpenAI API under: https://openai.com/product

- Once you have access, export your Organization-ID
  (https://platform.openai.com/account/organization) and your API-Key
  (https://platform.openai.com/api-keys) in your shell

  ```bash
  export OPENAI_API_KEY="your_key"
  export OPENAI_ORGANIZATION="your_organization_id"
  ```

## Installation

- Install via pip:
  ```bash
  pip install chatgpterminal
  # start chatting with
  gpt
  ```

## Not yet implemented

- Saving of conversations
- System communication
- conversation saving and management
- Correct messages
- Image Models? (Distant future)

