From ac66d92b9b36c98942d436d63a4de23e5ba34ebc Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Thu, 14 Mar 2024 15:01:25 +0100 Subject: [PATCH 1/3] added main docs and blog page --- docs/blog/.authors.yml | 0 docs/blog/index.md | 0 docs/blog/posts/from-demo-to-production-1.md | 0 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/blog/.authors.yml create mode 100644 docs/blog/index.md create mode 100644 docs/blog/posts/from-demo-to-production-1.md diff --git a/docs/blog/.authors.yml b/docs/blog/.authors.yml new file mode 100644 index 000000000..e69de29bb diff --git a/docs/blog/index.md b/docs/blog/index.md new file mode 100644 index 000000000..e69de29bb diff --git a/docs/blog/posts/from-demo-to-production-1.md b/docs/blog/posts/from-demo-to-production-1.md new file mode 100644 index 000000000..e69de29bb From ee8006d581586c560b38b2a305f9076a5a8f0846 Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Thu, 14 Mar 2024 19:29:35 +0100 Subject: [PATCH 2/3] Update docs --- docs/blog/.authors.yml | 6 +++ docs/blog/index.md | 9 +++++ docs/blog/posts/from-demo-to-production-1.md | 21 ++++++++++ docs/index.md | 42 +++++++++++++++++++- docs/overrides/main.html | 2 +- 5 files changed, 77 insertions(+), 3 deletions(-) diff --git a/docs/blog/.authors.yml b/docs/blog/.authors.yml index e69de29bb..b1b7ee32c 100644 --- a/docs/blog/.authors.yml +++ b/docs/blog/.authors.yml @@ -0,0 +1,6 @@ +authors: + tricalt: + name: Vasilije Markovic + description: Creator + avatar: https://avatars.githubusercontent.com/u/8619304?v=4 + url: https://twitter.com/intent/follow?screen_name=tricalt \ No newline at end of file diff --git a/docs/blog/index.md b/docs/blog/index.md index e69de29bb..dbb4999bd 100644 --- a/docs/blog/index.md +++ b/docs/blog/index.md @@ -0,0 +1,9 @@ +# Welcome to the cognee Blog + +The goal of the blog is to discuss broader topics around the cognee project, including the motivation behind the project, the technical details, and the future of the project. + +## Towards production pipelines step by step + +1. [bla?](posts/bla-and-bla.md) +2. [blablabla?](posts/chain-bla.md) +3. [blabla?](posts/valblart1.md) \ No newline at end of file diff --git a/docs/blog/posts/from-demo-to-production-1.md b/docs/blog/posts/from-demo-to-production-1.md index e69de29bb..dc6597e34 100644 --- a/docs/blog/posts/from-demo-to-production-1.md +++ b/docs/blog/posts/from-demo-to-production-1.md @@ -0,0 +1,21 @@ +--- +draft: False +date: 2023-10-05 +tags: + - pydantic + - langchain + - llm + - openai + - functions + - pdfs +authors: + - tricalt +--- + +# First post + + +## Conclusion + + +If you enjoy the content or want to try out `cognee` please check out the [github](https://github.com/topoteretes/cognee) and give us a star! diff --git a/docs/index.md b/docs/index.md index c968998e7..28fb1df21 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,3 +1,41 @@ -### HELLO WORLD +# cognee, Make data processing for LLMs easy + +_Open-source framework for creating knowledge graphs and data models for LLMs._ + +--- + +[![Twitter Follow](https://img.shields.io/twitter/follow/tricalt?style=social)](https://twitter.com/tricalt) +[![Downloads](https://img.shields.io/pypi/dm/cognee.svg)](https://pypi.python.org/pypi/instructor) + + + + + +cognee makes it easy to reliably enrich data for Large Language Models (LLMs) like GPT-3.5, GPT-4, GPT-4-Vision, including in the future the open source models like Mistral/Mixtral from Together, Anyscale, Ollama, and llama-cpp-python. + +By leveraging various tools like graph databases, function calling, tool calling and Pydantic; cognee stands out for its aim to emulate human memory for LLM apps and frameworks. +We leverage Neo4j to do the heavy lifting and dlt to load the data, and we've built a simple, easy-to-use API on top of it by helping you manage your context + + +## Getting Started + +``` +pip install -U cognee +``` + +You can also check out our [cookbook](./examples/index.md) to learn more about how to use cognee. + + + +## Why use cognee? + +The question of using cognee is fundamentally a question of why to structure data inputs and outputs for your llm workflows. + +1. **Cost effective** — With our upcoming opensource release, cognee will extend the capabilities of your LLMs without the need for expensive data processing tools. + +2. **Self contained** — cognee runs as a library and is simple to use + +3. **Interpretable** — Navigate graphs instead of embeddings to understand your data. + +4. **User Guided** cognee lets you control your input and provide your own Pydantic data models -## hello hello \ No newline at end of file diff --git a/docs/overrides/main.html b/docs/overrides/main.html index e14b99428..01e15fcc4 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% block announce %} For updates follow @tricalt on - + {% include ".icons/fontawesome/brands/twitter.svg" %} From c41cb0cddf42cda261fa48bc8a0abb527252ff2f Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Thu, 14 Mar 2024 19:32:25 +0100 Subject: [PATCH 3/3] Update docs --- docs/blog/index.md | 7 ++++--- docs/blog/posts/from-demo-to-production-2.md | 16 ++++++++++++++++ docs/blog/posts/from-demo-to-production-3.md | 16 ++++++++++++++++ docs/blog/posts/from-demo-to-production-4.md | 20 ++++++++++++++++++++ 4 files changed, 56 insertions(+), 3 deletions(-) create mode 100644 docs/blog/posts/from-demo-to-production-2.md create mode 100644 docs/blog/posts/from-demo-to-production-3.md create mode 100644 docs/blog/posts/from-demo-to-production-4.md diff --git a/docs/blog/index.md b/docs/blog/index.md index dbb4999bd..3fbe4fbd4 100644 --- a/docs/blog/index.md +++ b/docs/blog/index.md @@ -4,6 +4,7 @@ The goal of the blog is to discuss broader topics around the cognee project, inc ## Towards production pipelines step by step -1. [bla?](posts/bla-and-bla.md) -2. [blablabla?](posts/chain-bla.md) -3. [blabla?](posts/valblart1.md) \ No newline at end of file +1. [From demo to production 1](posts/from-demo-to-production-1.md) +2. [From demo to production 2](posts/from-demo-to-production-2.md) +3. [From demo to production 3](posts/from-demo-to-production-3.md) +4. [From demo to production 4](posts/from-demo-to-production-4.md) \ No newline at end of file diff --git a/docs/blog/posts/from-demo-to-production-2.md b/docs/blog/posts/from-demo-to-production-2.md new file mode 100644 index 000000000..354bac35b --- /dev/null +++ b/docs/blog/posts/from-demo-to-production-2.md @@ -0,0 +1,16 @@ + + + + + + + + + + + + +## Conclusion + + +If you enjoy the content or want to try out `cognee` please check out the [github](https://github.com/topoteretes/cognee) and give us a star! diff --git a/docs/blog/posts/from-demo-to-production-3.md b/docs/blog/posts/from-demo-to-production-3.md new file mode 100644 index 000000000..354bac35b --- /dev/null +++ b/docs/blog/posts/from-demo-to-production-3.md @@ -0,0 +1,16 @@ + + + + + + + + + + + + +## Conclusion + + +If you enjoy the content or want to try out `cognee` please check out the [github](https://github.com/topoteretes/cognee) and give us a star! diff --git a/docs/blog/posts/from-demo-to-production-4.md b/docs/blog/posts/from-demo-to-production-4.md new file mode 100644 index 000000000..0fede0550 --- /dev/null +++ b/docs/blog/posts/from-demo-to-production-4.md @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + +## Conclusion + + +If you enjoy the content or want to try out `cognee` please check out the [github](https://github.com/topoteretes/cognee) and give us a star!