cognee 0.5.2__py3-none-any.whl → 0.5.2.dev0__py3-none-any.whl
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.
- cognee/tasks/chunks/__init__.py +0 -9
- cognee/tasks/graph/__init__.py +0 -7
- cognee/tasks/memify/__init__.py +0 -8
- {cognee-0.5.2.dist-info → cognee-0.5.2.dev0.dist-info}/METADATA +11 -9
- {cognee-0.5.2.dist-info → cognee-0.5.2.dev0.dist-info}/RECORD +9 -9
- {cognee-0.5.2.dist-info → cognee-0.5.2.dev0.dist-info}/WHEEL +0 -0
- {cognee-0.5.2.dist-info → cognee-0.5.2.dev0.dist-info}/entry_points.txt +0 -0
- {cognee-0.5.2.dist-info → cognee-0.5.2.dev0.dist-info}/licenses/LICENSE +0 -0
- {cognee-0.5.2.dist-info → cognee-0.5.2.dev0.dist-info}/licenses/NOTICE.md +0 -0
cognee/tasks/chunks/__init__.py
CHANGED
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Text chunking and chunk management tasks.
|
|
3
|
-
|
|
4
|
-
This module provides functionality for splitting text into chunks using
|
|
5
|
-
different strategies (word, sentence, paragraph, or row-based) and for
|
|
6
|
-
cleaning up disconnected or obsolete chunks to support downstream
|
|
7
|
-
processing and knowledge graph workflows.
|
|
8
|
-
"""
|
|
9
|
-
|
|
10
1
|
from .chunk_by_word import chunk_by_word
|
|
11
2
|
from .chunk_by_sentence import chunk_by_sentence
|
|
12
3
|
from .chunk_by_paragraph import chunk_by_paragraph
|
cognee/tasks/graph/__init__.py
CHANGED
|
@@ -1,9 +1,2 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Graph extraction and manipulation tasks.
|
|
3
|
-
|
|
4
|
-
This module provides tasks for extracting knowledge graphs from data,
|
|
5
|
-
building relationships between entities, and managing graph structures.
|
|
6
|
-
"""
|
|
7
|
-
|
|
8
1
|
from .extract_graph_from_data import extract_graph_from_data
|
|
9
2
|
from .extract_graph_from_code import extract_graph_from_code
|
cognee/tasks/memify/__init__.py
CHANGED
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Memory and subgraph extraction tasks.
|
|
3
|
-
|
|
4
|
-
This module provides tasks for extracting subgraphs, document chunks, and
|
|
5
|
-
user session data, as well as initiating session cognification workflows,
|
|
6
|
-
to support memory enrichment and downstream knowledge graph processing.
|
|
7
|
-
"""
|
|
8
|
-
|
|
9
1
|
from .extract_subgraph import extract_subgraph
|
|
10
2
|
from .extract_subgraph_chunks import extract_subgraph_chunks
|
|
11
3
|
from .cognify_session import cognify_session
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cognee
|
|
3
|
-
Version: 0.5.2
|
|
3
|
+
Version: 0.5.2.dev0
|
|
4
4
|
Summary: Cognee - is a library for enriching LLM context with a semantic layer for better understanding and reasoning.
|
|
5
5
|
Project-URL: Homepage, https://www.cognee.ai
|
|
6
6
|
Project-URL: Repository, https://github.com/topoteretes/cognee
|
|
@@ -213,7 +213,7 @@ Use your data to build personalized and dynamic memory for AI Agents. Cognee let
|
|
|
213
213
|
<a href="https://www.readme-i18n.com/topoteretes/cognee?lang=es">Español</a> |
|
|
214
214
|
<a href="https://www.readme-i18n.com/topoteretes/cognee?lang=fr">Français</a> |
|
|
215
215
|
<a href="https://www.readme-i18n.com/topoteretes/cognee?lang=ja">日本語</a> |
|
|
216
|
-
<a href="
|
|
216
|
+
<a href="https://www.readme-i18n.com/topoteretes/cognee?lang=ko">한국어</a> |
|
|
217
217
|
<a href="https://www.readme-i18n.com/topoteretes/cognee?lang=pt">Português</a> |
|
|
218
218
|
<a href="https://www.readme-i18n.com/topoteretes/cognee?lang=ru">Русский</a> |
|
|
219
219
|
<a href="https://www.readme-i18n.com/topoteretes/cognee?lang=zh">中文</a>
|
|
@@ -225,19 +225,16 @@ Use your data to build personalized and dynamic memory for AI Agents. Cognee let
|
|
|
225
225
|
</div>
|
|
226
226
|
</div>
|
|
227
227
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
228
|
## About Cognee
|
|
232
229
|
|
|
233
230
|
Cognee is an open-source tool and platform that transforms your raw data into persistent and dynamic AI memory for Agents. It combines vector search with graph databases to make your documents both searchable by meaning and connected by relationships.
|
|
234
|
-
Cognee offers default memory creation and search which we describe bellow. But with Cognee you can build your own!
|
|
235
|
-
|
|
236
231
|
|
|
237
|
-
|
|
232
|
+
You can use Cognee in two ways:
|
|
238
233
|
|
|
234
|
+
1. [Self-host Cognee Open Source](https://docs.cognee.ai/getting-started/installation), which stores all data locally by default.
|
|
235
|
+
2. [Connect to Cognee Cloud](https://platform.cognee.ai/), and get the same OSS stack on managed infrastructure for easier development and productionization.
|
|
239
236
|
|
|
240
|
-
### Cognee Open Source:
|
|
237
|
+
### Cognee Open Source (self-hosted):
|
|
241
238
|
|
|
242
239
|
- Interconnects any type of data — including past conversations, files, images, and audio transcriptions
|
|
243
240
|
- Replaces traditional RAG systems with a unified memory layer built on graphs and vectors
|
|
@@ -245,6 +242,11 @@ Cognee offers default memory creation and search which we describe bellow. But w
|
|
|
245
242
|
- Provides Pythonic data pipelines for ingestion from 30+ data sources
|
|
246
243
|
- Offers high customizability through user-defined tasks, modular pipelines, and built-in search endpoints
|
|
247
244
|
|
|
245
|
+
### Cognee Cloud (managed):
|
|
246
|
+
- Hosted web UI dashboard
|
|
247
|
+
- Automatic version updates
|
|
248
|
+
- Resource usage analytics
|
|
249
|
+
- GDPR compliant, enterprise-grade security
|
|
248
250
|
|
|
249
251
|
## Basic Usage & Feature Guide
|
|
250
252
|
|
|
@@ -795,7 +795,7 @@ cognee/shared/exceptions/__init__.py,sha256=Q5Uxsj01kCVQUHtSFJ6Iz3vzPxmXCeSy04Ug
|
|
|
795
795
|
cognee/shared/exceptions/exceptions.py,sha256=37cqF9d8OoTfXLgaXxPOx1nkASE5iJF69lgLzZn402Q,697
|
|
796
796
|
cognee/tasks/chunk_naive_llm_classifier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
797
797
|
cognee/tasks/chunk_naive_llm_classifier/chunk_naive_llm_classifier.py,sha256=l8Vc0yOab4yqRfJEK2c5oA-CkNipOcuwOoc7QZIe6UM,7816
|
|
798
|
-
cognee/tasks/chunks/__init__.py,sha256=
|
|
798
|
+
cognee/tasks/chunks/__init__.py,sha256=PCmKfFGZj6Z4VupL1q_UUMDmgrqAkBwilmael4WSZ7Q,247
|
|
799
799
|
cognee/tasks/chunks/chunk_by_paragraph.py,sha256=mEfQZPcS9eT4kVO1APEUGKYRIFY0Nfl1w0b2lPUSDuM,3415
|
|
800
800
|
cognee/tasks/chunks/chunk_by_row.py,sha256=p0Jgy5-wmm7QPut55I4vgJDgkHm-IVEq9fQ3XlqsS1A,3165
|
|
801
801
|
cognee/tasks/chunks/chunk_by_sentence.py,sha256=rUP3cfGBAHakLo_vRylW4oGk8vSRSKcz3CCU_NWfdhc,3700
|
|
@@ -822,7 +822,7 @@ cognee/tasks/feedback/extract_feedback_interactions.py,sha256=u4mOXfKr92R9xcWKYr
|
|
|
822
822
|
cognee/tasks/feedback/generate_improved_answers.py,sha256=ssLuEWa5B8sZeewzlWycDLGUBOMkc9Tp3SK_hKapZ2s,4453
|
|
823
823
|
cognee/tasks/feedback/link_enrichments_to_feedback.py,sha256=OsU1btRkAbsNwHB6oY2YqUOron7_BQea4T22XjuVf_0,2164
|
|
824
824
|
cognee/tasks/feedback/models.py,sha256=zHd0s4u5_3OJ_Rc7XHI9l6pGyPwLY7Cv30WjCxuc0cw,748
|
|
825
|
-
cognee/tasks/graph/__init__.py,sha256=
|
|
825
|
+
cognee/tasks/graph/__init__.py,sha256=SLY4uxR1sWWlyOaWcRhUPy2XJ7spC2mtVftv4ugVdWg,122
|
|
826
826
|
cognee/tasks/graph/extract_graph_from_code.py,sha256=PhlX_J74YT3YJfPksQlkJdCYjelViMZ7ch6d4ivDDJQ,1043
|
|
827
827
|
cognee/tasks/graph/extract_graph_from_data.py,sha256=Wv-p8sNvf9gwttDCQrgDwtXdhI0SZfHfryhWBohVD6U,5788
|
|
828
828
|
cognee/tasks/graph/extract_graph_from_data_v2.py,sha256=Idjx_GDM8XiH8f9W9L2Hl3vAFnwXMf-ngYTgZvxml-A,2196
|
|
@@ -851,7 +851,7 @@ cognee/tasks/ingestion/save_data_item_to_storage.py,sha256=1iJVFk7497Of0Pt2DNG_9
|
|
|
851
851
|
cognee/tasks/ingestion/transform_data.py,sha256=cbI1FX86-Ft3pGRRHedjarXst9TR7O9ce39bYRhbf2Y,1506
|
|
852
852
|
cognee/tasks/ingestion/exceptions/__init__.py,sha256=GhFSvM6ChVsm16b-zaCkbluH9zCX72Wy-QLyMXyEAe4,240
|
|
853
853
|
cognee/tasks/ingestion/exceptions/exceptions.py,sha256=3wgLiK4G77nMc95-STtqs3LPWcRtzH_bDamikG4uyD0,385
|
|
854
|
-
cognee/tasks/memify/__init__.py,sha256=
|
|
854
|
+
cognee/tasks/memify/__init__.py,sha256=CuN45bCHzzzwSrqDQvVSs9ilm2ky04yRIauIull22wk,210
|
|
855
855
|
cognee/tasks/memify/cognify_session.py,sha256=HDJaBw3DnphNXSS27SegrkO5tycnlPOImwOB8BgLMLY,1599
|
|
856
856
|
cognee/tasks/memify/extract_subgraph.py,sha256=Al1A5d3bhmd-rd9T9is_ppTfK9JsTb3Es9mBWTiJjB8,220
|
|
857
857
|
cognee/tasks/memify/extract_subgraph_chunks.py,sha256=U5FVP09b5JaxQ_uiieY-8GcDAH0p0CEvkyOEaC5dmxg,414
|
|
@@ -1096,9 +1096,9 @@ distributed/tasks/queued_add_edges.py,sha256=kz1DHE05y-kNHORQJjYWHUi6Q1QWUp_v3Dl
|
|
|
1096
1096
|
distributed/tasks/queued_add_nodes.py,sha256=aqK4Ij--ADwUWknxYpiwbYrpa6CcvFfqHWbUZW4Kh3A,452
|
|
1097
1097
|
distributed/workers/data_point_saving_worker.py,sha256=kmaQy2A2J7W3k9Gd5lyoiT0XYOaJmEM8MbkKVOFOQVU,4729
|
|
1098
1098
|
distributed/workers/graph_saving_worker.py,sha256=b5OPLLUq0OBALGekdp73JKxU0GrMlVbO4AfIhmACKkQ,4724
|
|
1099
|
-
cognee-0.5.2.dist-info/METADATA,sha256=
|
|
1100
|
-
cognee-0.5.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
1101
|
-
cognee-0.5.2.dist-info/entry_points.txt,sha256=GCCTsNg8gzOJkolq7dR7OK1VlIAO202dGDnMI8nm8oQ,55
|
|
1102
|
-
cognee-0.5.2.dist-info/licenses/LICENSE,sha256=pHHjSQj1DD8SDppW88MMs04TPk7eAanL1c5xj8NY7NQ,11344
|
|
1103
|
-
cognee-0.5.2.dist-info/licenses/NOTICE.md,sha256=6L3saP3kSpcingOxDh-SGjMS8GY79Rlh2dBNLaO0o5c,339
|
|
1104
|
-
cognee-0.5.2.dist-info/RECORD,,
|
|
1099
|
+
cognee-0.5.2.dev0.dist-info/METADATA,sha256=uyQY2GwrzOoCGCwT55pz0Im5fMU8a-SYFX9-29rzhHI,15901
|
|
1100
|
+
cognee-0.5.2.dev0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
1101
|
+
cognee-0.5.2.dev0.dist-info/entry_points.txt,sha256=GCCTsNg8gzOJkolq7dR7OK1VlIAO202dGDnMI8nm8oQ,55
|
|
1102
|
+
cognee-0.5.2.dev0.dist-info/licenses/LICENSE,sha256=pHHjSQj1DD8SDppW88MMs04TPk7eAanL1c5xj8NY7NQ,11344
|
|
1103
|
+
cognee-0.5.2.dev0.dist-info/licenses/NOTICE.md,sha256=6L3saP3kSpcingOxDh-SGjMS8GY79Rlh2dBNLaO0o5c,339
|
|
1104
|
+
cognee-0.5.2.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|