We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8354850 commit b56a396Copy full SHA for b56a396
2 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "vector-graph-rag"
3
-version = "0.1.2"
+version = "0.1.3"
4
description = "A Graph RAG implementation using pure vector search with Milvus"
5
readme = "README.md"
6
license = { text = "MIT" }
src/vector_graph_rag/__init__.py
@@ -18,7 +18,7 @@
18
from vector_graph_rag.rag import VectorGraphRAG, create_rag
19
from vector_graph_rag.llm.cache import LLMCache, get_llm_cache
20
21
-__version__ = "0.1.2"
+__version__ = "0.1.3"
22
23
__all__ = [
24
"Settings",
0 commit comments