v1.6.2

eosphoros-ai/DB-GPTv1.6.2Aug 1, 2026by amirivojdan

AI Summary

This is a minor maintenance release focused on safer word embedding loading and internal code quality improvements.

Key Highlights

  • Safer Word Embeddings: Models now ship in NumPy's .npz format with pickling disabled to remove arbitrary code execution risk.
  • Clearer Error Types: Passing unsupported input types now raises TypeError instead of ValueError.
  • Code Quality: Upgraded the development toolchain and cleaned up issues across the codebase.

New Features

  • Safer word embedding loading mechanism
  • Improved error handling for unsupported input types
  • Development toolchain upgrades

Full Release Notes

# What's New in v1.6.2

This is a minor maintenance release focused on safer word embedding loading and internal code quality.

## Highlights

* **Safer Word Embeddings** – word embedding models now ship in NumPy's `.npz` format and load with pickling disabled, removing arbitrary code execution risk at load time. Existing `.bin` models continue to load through a restricted unpickler.
* **Clearer Error Types** – passing an unsupported input type to a transform, pipeline, or word cloud now raises `TypeError` instead of `ValueError`.
* **Code Quality** – upgraded the development toolchain and cleaned up the issues it surfaced across the codebase.