jina-ai / jina

☁️ Build multimodal AI applications with cloud-native stack
https://docs.jina.ai
Apache License 2.0
20.54k stars 2.21k forks source link

Release Notes 3.23.3 #6139

Closed JoanFM closed 4 months ago

JoanFM commented 4 months ago

Release Note

This release contains 1 bug fix and 1 documentation improvement.

🐞 Bug Fixes

Fix dynamic creation of schema with nested DocLists in Gateway (#6138)

Previously, nested document types with multiple DocList levels of nesting sometimes led to the schema exposed by the Gateway being incomplete because some references were lost.

Now schemas like this exposed through Flow work as expected:

class QuoteFile(BaseDoc):
    quote_file_id: int
    texts: DocList[TextDoc]
    images: DocList[ImageDoc]

class SearchResult(BaseDoc):
    results: DocList[QuoteFile]

📗 Documentation Improvements

🤟 Contributors