Skip to content

Instantly share code, notes, and snippets.

View ZiweiXU's full-sized avatar

Ziwei XU ZiweiXU

View GitHub Profile
@ZiweiXU
ZiweiXU / gpt.py
Last active March 3, 2023 13:30
A simple Python client of OpenAI chat completion service (backend of ChatGPT).
#!/usr/bin/env python3
"""
GPT-3.5 client for Python 3.6+.
Usage: python gpt.py [command] [options] [text]
Commands:
another-word Find another word with GPT-3.
qa Ask a single question then exit.
q Alias for qa.
rephrase Rephrase text with GPT-3.
interactive Start an interactive chat with GPT-3.