| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-02-14 | 907 Bytes | |
| v2.7.1 source code.tar.gz | 2026-02-14 | 6.8 MB | |
| v2.7.1 source code.zip | 2026-02-14 | 7.0 MB | |
| Totals: 3 Items | 13.8 MB | 2 | |
Bug Fixes
- fix(chat_history): Support nested multimodal content in
get_history()(#208, [#141]) ChatHistory.get_history()now correctly handles multimodal objects (Image, PDF, Audio) nested inside sub-schemas, not just at the top level- Replaced
json.dumps()with Pydantic-nativemodel_dump_json(exclude=...)to fixTypeErrorwhen schemas contain both multimodal fields and nested Pydantic models - Added recursive
_extract_multimodal_info()that walks the full object tree to find multimodal content at any depth - Handles lists, tuples, dicts, and deeply nested Pydantic models
- All-multimodal containers (list/dict) are fully excluded from the JSON output
New Examples
- nested-multimodal: End-to-end example demonstrating nested multimodal schemas with actual LLM calls
Full Changelog
https://github.com/BrainBlend-AI/atomic-agents/compare/v2.7.0...v2.7.1