Skip to main content

Simple generator wrapper for OpenAI Python API with retry

Project description

openai-pygenerator

GitHub Workflow Status GitHub release (latest by date) GitHub

This is a simple wrapper around the OpenAI Python API which provides type annotations, retry functionality and a generator over completions.

Installation

pip install openai-pygenerator

Usage

from openai_pygenerator import ChatSession
 
session = ChatSession()
solution = session.ask("What is the square root of 256?")
print(solution)
working = session.ask("Show your working")
print(working)
print("Transcript:")
print(session.transcript)

For an example of overriding parameters see src/example.py.

Running

export OPENAI_API_KEY=<key>
python src/example.py

Configuration

export GPT_MODEL=gpt-3.5-turbo
export GPT_TEMPERATURE=0.2
export GPT_MAX_TOKENS=100
export GPT_MAX_RETRIES=5
export GPT_RETRY_EXPONENT_SECONDS=2
export GPT_RETRY_BASE_SECONDS=20
export OPENAI_API_KEY=<key>
python src/example.py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openai-pygenerator-0.2.2.tar.gz (14.7 kB view hashes)

Uploaded Source

Built Distribution

openai_pygenerator-0.2.2-py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page