<!-- .github/pull_request_template.md --> ## Description PR from user jspv, running it through our branch to test CI/CD ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin. --------- Signed-off-by: Diego B Theuerkauf <diego.theuerkauf@tuebingen.mpg.de> Co-authored-by: Boris <boris@topoteretes.com> Co-authored-by: vasilije <vas.markovic@gmail.com> Co-authored-by: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Co-authored-by: Hande <159312713+hande-k@users.noreply.github.com> Co-authored-by: Matea Pesic <80577904+matea16@users.noreply.github.com> Co-authored-by: hajdul88 <52442977+hajdul88@users.noreply.github.com> Co-authored-by: Daniel Molnar <soobrosa@gmail.com> Co-authored-by: Diego Baptista Theuerkauf <34717973+diegoabt@users.noreply.github.com> Co-authored-by: Dmitrii Galkin <36552323+dm1tryG@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: lxobr <122801072+lxobr@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions@users.noreply.github.com> Co-authored-by: jspv <jspvgithub@twinleaf.xyz>
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
import os
|
|
import asyncio
|
|
import cognee
|
|
from cognee.api.v1.visualize.visualize import visualize_graph
|
|
from cognee.shared.logging_utils import setup_logging, ERROR
|
|
|
|
text_a = """
|
|
AI is revolutionizing financial services through intelligent fraud detection
|
|
and automated customer service platforms.
|
|
"""
|
|
|
|
text_b = """
|
|
Advances in AI are enabling smarter systems that learn and adapt over time.
|
|
"""
|
|
|
|
text_c = """
|
|
MedTech startups have seen significant growth in recent years, driven by innovation
|
|
in digital health and medical devices.
|
|
"""
|
|
|
|
node_set_a = ["AI", "FinTech"]
|
|
node_set_b = ["AI"]
|
|
node_set_c = ["MedTech"]
|
|
|
|
|
|
async def main():
|
|
await cognee.prune.prune_data()
|
|
await cognee.prune.prune_system(metadata=True)
|
|
|
|
await cognee.add(text_a, node_set=node_set_a)
|
|
await cognee.add(text_b, node_set=node_set_b)
|
|
await cognee.add(text_c, node_set=node_set_c)
|
|
await cognee.cognify()
|
|
|
|
visualization_path = os.path.join(
|
|
os.path.dirname(__file__), "./.artifacts/graph_visualization.html"
|
|
)
|
|
await visualize_graph(visualization_path)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
logger = setup_logging(log_level=ERROR)
|
|
loop = asyncio.new_event_loop()
|
|
asyncio.run(main())
|