Skip to main content

Unify common OpenAI API requests use cases into a simple interface

Project description

Simple OpenAI Request

This script provides a simple interface for making OpenAI API requests with various use cases:

  • Synchronous requests: parallel requests with retry when rate limit hit
  • Batch requests: create, check and merge result of batch API requests
  • Caching: exact match caching to avoid redundant API calls

Main Function

make_openai_requests(conversations, model, use_batch=False, use_cache=True, ...)

Key Parameters:

  • conversations: List of conversations/messages (supports multiple formats)
  • model: OpenAI model to use (e.g., "gpt-3.5-turbo")
  • use_batch: Set to True for batch API, False for synchronous API
  • use_cache: Enable/disable caching
  • api_key: OpenAI API key (if not provided, it will be read from the environment variable OPENAI_API_KEY)

Additional Options:

  • generation_args: Additional arguments for the API call (e.g., max_tokens, temperature)
  • cache_file: Path to the cache file (default: environment variable SIMPLE_OPENAI_REQUESTS_CACHE_FILE or default as ~/.gpt_cache.pkl)
  • batch_dir: Directory for batch processing files (default: environment variable SIMPLE_OPENAI_REQUESTS_BATCH_DIR or default as ~/.gpt_batch_requests)
  • full_response: Return full API response or just the message content
  • user_confirm: If True, prompts for user confirmation before making API requests

and other parameters in function make_openai_requests()'s documentation.

Return Format:

The function returns a list of dictionaries, where each dictionary contains:

  • index: The index of the conversation
  • conversation: The original conversation
  • response: The API response (full response object if full_response=True, otherwise just the message content)
  • is_cached_response: Boolean indicating if the response was from cache
  • error: Any error message (None if no error occurred)

Installation

Option 1: Install using pip

You can install the Simple OpenAI Request package using pip:

pip install simple-openai-requests

Option 2: Install from source

To install the package from source, follow these steps:

  1. Clone the repository:

    git clone https://github.com/lehoanganh298/simple_openai_requests.git
    
  2. Navigate to the project directory:

    cd simple_openai_requests
    
  3. Install the package:

    pip install .
    

Usage Examples:

1. Simple string prompts

from simple_openai_requests import make_openai_requests

conversations = [
    "What is the capital of France?",
    "How does photosynthesis work?"
]

results = make_openai_requests(
    conversations=conversations,
    model="gpt-3.5-turbo",
    use_batch=False,
    use_cache=True
)

for result in results:
    print(f"Question: {result['conversation'][0]['content']}")
    print(f"Answer: {result['response']}\n")

2. Conversation format

conversations = [
    [
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "What is the best way to learn programming?"}
    ],
    [
        {"role": "system", "content": "You are a knowledgeable historian."},
        {"role": "user", "content": "Explain the significance of the Industrial Revolution."}
    ]
]
results = make_openai_requests(
    conversations=conversations,
    model="gpt-4",
    use_batch=True,
    use_cache=False,
    generation_args={"max_tokens": 150}
)
for result in results:
    print(f"Question: {result['conversation'][-1]['content']}")
    print(f"Answer: {result['response']}\n")

3. Indexed conversation format

conversations = [
    {
        "index": 0,
        "conversation": [
            {"role": "system", "content": "You are a math tutor."},
            {"role": "user", "content": "Explain the Pythagorean theorem."}
        ]
    },
    {
        "index": 1,
        "conversation": [
            {"role": "system", "content": "You are a creative writing assistant."},
            {"role": "user", "content": "Give me a writing prompt for a short story."}
        ]
    }
]
results = make_openai_requests(
    conversations=conversations,
    model="gpt-3.5-turbo",
    use_batch=False,
    use_cache=True,
    max_workers=2
)
for result in results:
    print(f"Index: {result['index']}")
    print(f"Question: {result['conversation'][-1]['content']}")
    print(f"Answer: {result['response']}\n")

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

simple_openai_requests-1.0.0.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_openai_requests-1.0.0-py3-none-any.whl (13.4 kB view details)

Uploaded Python 3

File details

Details for the file simple_openai_requests-1.0.0.tar.gz.

File metadata

  • Download URL: simple_openai_requests-1.0.0.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.6

File hashes

Hashes for simple_openai_requests-1.0.0.tar.gz
Algorithm Hash digest
SHA256 1d8022b73cf0f34d32672b5f19cf4f632bd70c3141b5b92c3d367ba7061bf6fb
MD5 1bb403fb145f33ba31cb0ea031ec79a0
BLAKE2b-256 de7ea53dc3f6b539e93348d23ce35e3985fb4ab2e64ce0a677565cd849f9231d

See more details on using hashes here.

File details

Details for the file simple_openai_requests-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for simple_openai_requests-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 66d2483fed0c47fb10fd936496ea2e6aede9291a041d149276ceef5d6fc3ab51
MD5 baabcb427b55b6b10c49a72160bea8ff
BLAKE2b-256 136898e2816c5d66c0d82b7e8955bf2a875d1254e3b397985d434cdb7d5a2aad

See more details on using hashes here.

Supported by

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