graphrag 0.0.0__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.
- graphrag-0.0.0/PKG-INFO +5 -0
- graphrag-0.0.0/graphrag/__init__.py +0 -0
- graphrag-0.0.0/graphrag.egg-info/PKG-INFO +5 -0
- graphrag-0.0.0/graphrag.egg-info/SOURCES.txt +6 -0
- graphrag-0.0.0/graphrag.egg-info/dependency_links.txt +1 -0
- graphrag-0.0.0/graphrag.egg-info/top_level.txt +1 -0
- graphrag-0.0.0/pyproject.toml +15 -0
- graphrag-0.0.0/setup.cfg +4 -0
graphrag-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: graphrag
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: The GraphRAG project is a data pipeline and transformation suite designed to extract meaningful, structured data from unstructured text using LLMs
|
|
5
|
+
Author-email: Chris Trevino <chtrevin@microsoft.com>, Ha Trinh <trinhha@microsoft.com>, Alonso Guevara Fernández <alonsog@microsoft.com>, Andrés Morales <andresmor@microsoft.com>, David Tittsworth <datittsw@microsoft.com>, Dayenne de Souza <ddesouza@microsoft.com>, Kate Lytvynets <kalytv@microsoft.com>, Jonathan Larson <jolarso@microsoft.com>, Nathan Evans <naevans@microsoft.com>
|
|
File without changes
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: graphrag
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: The GraphRAG project is a data pipeline and transformation suite designed to extract meaningful, structured data from unstructured text using LLMs
|
|
5
|
+
Author-email: Chris Trevino <chtrevin@microsoft.com>, Ha Trinh <trinhha@microsoft.com>, Alonso Guevara Fernández <alonsog@microsoft.com>, Andrés Morales <andresmor@microsoft.com>, David Tittsworth <datittsw@microsoft.com>, Dayenne de Souza <ddesouza@microsoft.com>, Kate Lytvynets <kalytv@microsoft.com>, Jonathan Larson <jolarso@microsoft.com>, Nathan Evans <naevans@microsoft.com>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
graphrag
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "graphrag"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
authors = [
|
|
5
|
+
{name = "Chris Trevino", email = "chtrevin@microsoft.com"},
|
|
6
|
+
{name = "Ha Trinh", email = "trinhha@microsoft.com"},
|
|
7
|
+
{name = "Alonso Guevara Fernández", email = "alonsog@microsoft.com"},
|
|
8
|
+
{name = "Andrés Morales", email = "andresmor@microsoft.com"},
|
|
9
|
+
{name = "David Tittsworth", email = "datittsw@microsoft.com"},
|
|
10
|
+
{name = "Dayenne de Souza", email = "ddesouza@microsoft.com"},
|
|
11
|
+
{name = "Kate Lytvynets", email = "kalytv@microsoft.com"},
|
|
12
|
+
{name = "Jonathan Larson", email = "jolarso@microsoft.com"},
|
|
13
|
+
{name = "Nathan Evans", email = "naevans@microsoft.com"},
|
|
14
|
+
]
|
|
15
|
+
description = "The GraphRAG project is a data pipeline and transformation suite designed to extract meaningful, structured data from unstructured text using LLMs"
|
graphrag-0.0.0/setup.cfg
ADDED