Skip to main content

openai-sdk-helpers

PyPI version Python versions License: MIT

Small, typed, SDK-first primitives for composing OpenAI Responses, Agents, files, vector stores, tools, and Codex plugins.

Install · Choose a surface · Capabilities · Security · Roadmap

Product contract

openai-sdk-helpers complements the official openai and openai-agents Python packages. It provides reusable production primitives without replacing the SDKs, hiding API calls, owning application prompts, or becoming a universal agent framework.

Every public helper should be:

  • typed and predictable;
  • thin enough that official SDK concepts remain recognizable;
  • explicit about network calls, resource ownership, and cleanup;
  • usable without unrelated optional integrations;
  • tested without requiring paid API calls in pull-request CI;
  • backward-compatible or accompanied by deliberate migration guidance.

See PRODUCT.md for the full product vision and feature acceptance test.

Installation

The core package installs both official OpenAI Python SDKs and no UI or LangExtract dependency:

pip install openai-sdk-helpers

Optional profiles:

pip install "openai-sdk-helpers[extract]"  # LangExtract-backed extraction
pip install "openai-sdk-helpers[ui]"       # Streamlit application helpers
pip install "openai-sdk-helpers[all]"      # All current optional capabilities

Python 3.10–3.13 is validated in CI. The distribution includes py.typed. See docs/installation.md for profile details and missing-extra behavior.

Choose a surface

Responses

Use openai_sdk_helpers.response when the application needs direct control of Responses API inputs, response identifiers, message history, custom tool handlers, files, or raw streaming events.

from openai_sdk_helpers import OpenAISettings
from openai_sdk_helpers.response import ResponseBase

settings = OpenAISettings.from_env()

with ResponseBase(
    name="reviewer",
    instructions="Review the supplied code.",
    tools=None,
    output_structure=None,
    tool_handlers={},
    openai_settings=settings,
) as response:
    result = response.run_sync("Review: def add(a, b): return a + b")
    print(result)

Agents

Use openai_sdk_helpers.agent when the application benefits from the official Agents SDK loop, tools, sessions, guardrails, handoffs, or tracing.

from openai_sdk_helpers.agent import SummarizerAgent

agent = SummarizerAgent(default_model="your-model")
result = agent.run_sync("Summarize this text in one sentence.")
print(result.text)

Codex plugins

Use openai_sdk_helpers.codex when a separately packaged capability should register typed commands through deterministic entry-point discovery.

openai-helpers codex plugins
openai-helpers codex commands

See docs/codex-plugins.md for the plugin protocol, lifecycle, discovery, compatibility, and packaging guide.

Direct SDK calls

Use the official SDK directly when a package helper would only rename parameters or obscure the underlying client, resource, response, event, or exception. Access to underlying SDK objects is part of this project's escape- hatch policy.

The canonical inventory of shipped and planned surfaces is docs/capabilities.md.

Core capabilities

  • centralized OpenAI settings and client creation;
  • Responses API orchestration, structured outputs, files, tools, and websocket helpers;
  • Agents SDK wrappers, runners, search workflows, and reusable text agents;
  • typed Pydantic structures and Jinja prompt rendering;
  • file and vector-store helpers;
  • output validation and shared tool contracts;
  • deterministic Codex plugin registration, discovery, inspection, and lifecycle;
  • optional LangExtract and Streamlit integrations;
  • local CLI inspection without hidden API calls.

Detailed maturity, installation, execution, and escape-hatch information lives only in the capability matrix.

Configuration

OpenAISettings loads standard configuration from environment variables or a local .env file and creates official SDK clients:

from openai_sdk_helpers import OpenAISettings

settings = OpenAISettings.from_env()
client = settings.create_client()

Common variables include OPENAI_API_KEY, OPENAI_ORG_ID, OPENAI_PROJECT_ID, OPENAI_BASE_URL, OPENAI_MODEL, OPENAI_TIMEOUT, and OPENAI_MAX_RETRIES. Uncommon official client parameters remain available through extra_client_kwargs.

Security

Report suspected vulnerabilities through the repository's confidential GitHub private vulnerability reporting flow, not a public issue. Never include real credentials, customer prompts, model responses, uploaded files, or production logs. See SECURITY.md for supported versions, reporting guidance, and trust boundaries.

Documentation

Development

git clone https://github.com/fatmambot33/openai-sdk-helpers.git
cd openai-sdk-helpers
pip install -e ".[dev]"

pydocstyle src
black --check --diff .
pyright src
pytest -q --cov=src --cov-report=term-missing --cov-fail-under=70
python scripts/check_markdown_links.py

Additional CI validates Python 3.10–3.13, minimum and latest compatible OpenAI SDK versions, built distributions, installed entry points, supported examples, and isolated core, extract, ui, and all profiles.

See CONTRIBUTING.md and AGENTS.md before changing public behavior.

Scope boundaries

This project is not an end-user application, hosted platform, replacement SDK, universal agent framework, prompt catalog, or storage service. Application- specific business logic belongs in consuming projects.

MCP, consolidated retrieval, and Realtime helpers are roadmap items, not current package promises. Their issue order and release gates are tracked in ROADMAP.md.

License

Licensed under the MIT License.

Download files

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

Source Distribution

openai_sdk_helpers-0.7.5.tar.gz (154.3 kB view details)

Uploaded Source

Built Distribution

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

openai_sdk_helpers-0.7.5-py3-none-any.whl (205.9 kB view details)

Uploaded Python 3

File details

Details for the file openai_sdk_helpers-0.7.5.tar.gz.

File metadata

  • Download URL: openai_sdk_helpers-0.7.5.tar.gz
  • Upload date:
  • Size: 154.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for openai_sdk_helpers-0.7.5.tar.gz
Algorithm Hash digest
SHA256 a0510acf8507d3e9566c57947118b291b2bc2d4a30305795bc71a870e76c011d
MD5 6fb3edb74aaddd65b5367cee2b0e9832
BLAKE2b-256 07af250480cbe4a2187f26435174f5b6b345b4014ad3bad51b17ccff378febd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for openai_sdk_helpers-0.7.5.tar.gz:

Publisher: python-publish.yml on fatmambot33/openai-sdk-helpers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openai_sdk_helpers-0.7.5-py3-none-any.whl.

File metadata

File hashes

Hashes for openai_sdk_helpers-0.7.5-py3-none-any.whl
Algorithm Hash digest
SHA256 bda05160584b82e79cd57e1d68080d3331506dc7fdbe042a2fcd4a5114c02f5d
MD5 24e4f69c88a0ec9c07cc0eae90960b80
BLAKE2b-256 70b91e3589fb01425cde22d92e0c93e0d9a8418400eb07d479ba612b41605ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for openai_sdk_helpers-0.7.5-py3-none-any.whl:

Publisher: python-publish.yml on fatmambot33/openai-sdk-helpers

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.9.2

2 files

0.9.1

2 files

0.9.0

2 files

0.8.1

2 files

0.8.0

2 files

This release

0.7.5 This release

2 files

0.7.4

2 files

0.7.3

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.6

2 files

0.6.5

2 files

0.6.4

2 files

0.6.2

2 files

0.6.1

2 files

0.6.0

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.4

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.9

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

Supported by

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