File tree Expand file tree Collapse file tree 6 files changed +80
-61
lines changed
llama-index-integrations/multi_modal_llms/llama-index-multi-modal-llms-ollama Expand file tree Collapse file tree 6 files changed +80
-61
lines changed Original file line number Diff line number Diff line change 11# ChangeLog
22
3+ ## [ 0.10.15] - 2024-03-01
4+
5+ ### New Features
6+
7+ - Added FeishuWikiReader (#11491 )
8+ - Added videodb retriever integration (#11463 )
9+ - Added async to opensearch vector store (#11513 )
10+ - New LangFuse one-click callback handler (#11324 )
11+
12+ ### Bug Fixes / Nits
13+
14+ - Fixed deadlock issue with async chat streaming (#11548 )
15+ - Improved hidden file check in SimpleDirectoryReader (#11496 )
16+ - Fixed null values in document metadata when using SimpleDirectoryReader (#11501 )
17+ - Fix for sqlite utils in jsonalyze query engine (#11519 )
18+ - Added base url and timeout to ollama multimodal LLM (#11526 )
19+ - Updated duplicate handling in query fusion retriever (#11542 )
20+ - Fixed bug in kg indexx struct updating (#11475 )
21+
322## [ 0.10.14] - 2024-02-28
423
524### New Features
Original file line number Diff line number Diff line change 11"""Init file of LlamaIndex."""
22
3- __version__ = "0.10.14 "
3+ __version__ = "0.10.15 "
44
55import logging
66from logging import NullHandler
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ name = "llama-index-core"
4343packages = [{include = " llama_index" }]
4444readme = " README.md"
4545repository = " https://github.com/run-llama/llama_index"
46- version = " 0.10.14.post1 "
46+ version = " 0.10.15 "
4747
4848[tool .poetry .dependencies ]
4949SQLAlchemy = {extras = [" asyncio" ], version = " >=1.4.49" }
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
2727license = " MIT"
2828name = " llama-index-multi-modal-llms-ollama"
2929readme = " README.md"
30- version = " 0.1.2 "
30+ version = " 0.1.3 "
3131
3232[tool .poetry .dependencies ]
3333python = " >=3.8.1,<4.0"
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ name = "llama-index"
4444packages = [{from = " _llama-index" , include = " llama_index" }]
4545readme = " README.md"
4646repository = " https://github.com/run-llama/llama_index"
47- version = " 0.10.14 "
47+ version = " 0.10.15 "
4848
4949[tool .poetry .dependencies ]
5050python = " >=3.8.1,<4.0"
@@ -57,7 +57,7 @@ llama-index-agent-openai = "^0.1.4"
5757llama-index-readers-file = " ^0.1.4"
5858llama-index-readers-llama-parse = " ^0.1.2"
5959llama-index-indices-managed-llama-cloud = " ^0.1.2"
60- llama-index-core = " ^0.10.14 "
60+ llama-index-core = " ^0.10.15 "
6161llama-index-multi-modal-llms-openai = " ^0.1.3"
6262llama-index-cli = " ^0.1.2"
6363
You can’t perform that action at this time.
0 commit comments