Metadata-Version: 2.1
Name: GPTAgent
Version: 0.0.8
Summary: A small and simple way to generate a ChatGPT agent
Project-URL: Homepage, https://github.com/inteligenciamilgrau/ChatGPT/tree/main/GPTAgent
Author-email: Hobbert Evergreen <inteligenciamilgrau@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

### ChatGPT Agente

## Instalação

Basta instalar o pacote via pip
```
pip install GPTAgent
```

Gerar uma Key no site da OpenAI para desenvolvedores e colocar no arquivo **chat_key.json**

```
{"api_key": "coloque_aqui_sua_api_key_da_OpenAI"}
```

Exemplo:

```
from GPTAgent.GPTAgent import GPTAgent

agente = GPTAgent(name="Bob", estilo="Você é engraçado e positivo.")

print(agente.perguntar("Bom dia!"))
```
