From bb4cf4320454af87cb1886ef9fba805e016aa902 Mon Sep 17 00:00:00 2001 From: sanchitvj Date: Fri, 26 Apr 2024 15:46:39 -0400 Subject: [PATCH 1/3] pre deploying .toml changes --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f2b8bb1..81bc5e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,14 +8,14 @@ dynamic = ["version"] description = 'A simple package for implementing RAG' readme = "README.md" requires-python = ">=3.8" -license = "MIT" -keywords = ["RAG", "Retrieval Augmented Generation", "LLM", "Graph"] +license = { file = 'LICENSE' } +keywords = ["RAG", "Retrieval Augmented Generation", "LLM", "retrieval", "quantization"] authors = [ { name = "Arjun Bingly", email = "arjunbin@gmail.com" }, { name = "Sanchit Vijay", email = "sanchitvj1026@gmail.com" } ] classifiers = [ - "Development Status :: 1 - Planning", + "Development Status :: 3 - Alpha", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -61,9 +61,9 @@ dev = [ ] [project.urls] -Documentation = "https://github.com/arjbingly/Capstone_5#readme" -Issues = "https://github.com/arjbingly/Capstone_5/issues" -Source = "https://github.com/arjbingly/Capstone_5/" +Documentation = "https://g-rag.org/" +Issues = "https://github.com/arjbingly/grag/issues" +Repository = "https://github.com/arjbingly/grag.git" [tool.hatch.version] path = "src/grag/__about__.py" From 5053a45a9c533017aa1e25cd5526a38427e98359 Mon Sep 17 00:00:00 2001 From: Arjun Bingly Date: Fri, 26 Apr 2024 17:15:19 -0400 Subject: [PATCH 2/3] Versioning 0.0.1b0 --- pyproject.toml | 4 ++-- src/grag/__about__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 81bc5e4..434af8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ dependencies = [ "pydantic>=2.5.0", "rouge-score>=0.1.2", "deeplake>=3.8.27", - "bitsandbytes>=0.43.0", + "bitsandbytes>=0.42.0", "accelerate>=0.28.0", "poppler-utils>=0.1.0", "tesseract>=0.1.3" @@ -57,7 +57,7 @@ dev = [ "ruff", "sphinx", "sphinx-rtd-theme", - "sphinx-gallery" + "sphinx-gallery", ] [project.urls] diff --git a/src/grag/__about__.py b/src/grag/__about__.py index f102a9c..bac4980 100644 --- a/src/grag/__about__.py +++ b/src/grag/__about__.py @@ -1 +1 @@ -__version__ = "0.0.1" +__version__ = "0.0.1b0" From 0e2f2ed9f195632420204b119964927ecd0c04a5 Mon Sep 17 00:00:00 2001 From: Sanchit Vijay Date: Fri, 26 Apr 2024 17:16:36 -0400 Subject: [PATCH 3/3] dev status beta --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 434af8c..d06cf5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ authors = [ { name = "Sanchit Vijay", email = "sanchitvj1026@gmail.com" } ] classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 3 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",