DocWire SDK 2025.08.xx Released – GPT-5 Now Fully Integrated, New Default Model



This content originally appeared on DEV Community and was authored by Krzysztof Nowicki

The 2025.08.13 release brings a major milestone to DocWire SDK: full support for OpenAI’s newly released GPT-5 family of models, including gpt_5, gpt_5_mini, and gpt_5_chat_latest.

To reflect this evolution, gpt_5 is now the default model for all OpenAI-related operations in DocWire — giving developers direct access to state-of-the-art AI with no additional configuration.

This version also brings minor but important code quality improvements and updated documentation.

Full release notes: https://github.com/docwire/docwire/releases/tag/2025.08.13

Features

1 · GPT-5 Model Family Support

  • Full integration of next-generation models:
    • gpt_5, gpt_5_mini, gpt_5_nano, gpt_5_chat_latest
    • Research-focused models: o3_deep_research, o4_mini_deep_research

2 · Default Model Upgraded

  • All OpenAI operations now default to gpt_5, replacing previous versions.

Improvements

  • Modern libxml2 Compatibility

    • Deprecated xmlGetGlobalState() removed from XML parser initialization.
  • Better Error Handling

    • Explicit exceptions now thrown for unknown or unsupported OpenAI models.
  • Code Quality Upgrades

    • explicit added to AI-related single-argument constructors in AnalyzeData, ExtractEntities, and Summarize elements to avoid implicit conversions.

Documentation

  • Updated README
    • Reflects new default model and the complete list of available OpenAI models
    • CLI and code examples now demonstrate how to choose non-default models

Get Started

We welcome feedback, examples, and issues as always.

— The DocWire Team


This content originally appeared on DEV Community and was authored by Krzysztof Nowicki