ragxo 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ragxo
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A RAG (Retrieval-Augmented Generation) toolkit with Milvus integration
5
5
  Home-page: https://github.com/yourusername/ragx
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "ragxo"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "A RAG (Retrieval-Augmented Generation) toolkit with Milvus integration"
5
5
  authors = ["Mohamed Sadek <mohamedfawzydes@gmail.com>"]
6
6
  readme = "README.md"
@@ -0,0 +1,3 @@
1
+ from ragx import Ragxo, Document
2
+
3
+ __all__ = ["Ragxo", "Document"]
@@ -16,7 +16,7 @@ class Document(BaseModel):
16
16
  metadata: dict
17
17
  id: int
18
18
 
19
- class Ragx:
19
+ class Ragxo:
20
20
  def __init__(self, dimension: int) -> None:
21
21
  self.dimension = dimension
22
22
  self.collection_name = "ragx"
File without changes
File without changes