voai

A tool designed for working with 🧑‍💻ChatGPT API🧑‍💻


Keywords
chatgpt, gpt, chat, voai, openai, ai
License
Apache-2.0
Install
pip install voai==0.0.4

Documentation

VoAI v0.0.3 - tool designed for working with ChatGPT API

Change log

  • Added ask_with_context method for GPT35Turbo that will do same as just ask method but will remember previous context

Usage

import voai

KEY = "your-api-key"

chat = voai.GPT35Turbo(KEY)
while True:
    query = input("> ")

    response = chat.ask(query)
    print(response)

Using libraries