diff --git a/.env.template b/.env.template index da862f285..cfcb62bb4 100644 --- a/.env.template +++ b/.env.template @@ -65,3 +65,7 @@ DB_NAME=cognee_db # LITELLM Logging Level. Set to quiten down logging LITELLM_LOG="ERROR" + +# Set this environment variable to disable sending telemetry data +# TELEMETRY_DISABLED=1 + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9e97d0d23..736a21024 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -97,7 +97,7 @@ git push origin feature/your-feature-name 2. Create a Pull Request: - Go to the [**cognee** repository](https://github.com/topoteretes/cognee) - - Click "Compare & Pull Request" + - Click "Compare & Pull Request" and make sure to open PR against dev branch - Fill in the PR template with details about your changes ## 5. 📜 Developer Certificate of Origin (DCO) diff --git a/README.md b/README.md index fdbf9567a..47517076a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@
- cognee - memory layer for AI apps and Agents + cognee - Memory for AI Agents in 5 lines of code

Demo @@ -24,16 +24,16 @@ [![License](https://img.shields.io/github/license/topoteretes/cognee?colorA=00C586&colorB=000000)](https://github.com/topoteretes/cognee/blob/main/LICENSE) [![Contributors](https://img.shields.io/github/contributors/topoteretes/cognee?colorA=00C586&colorB=000000)](https://github.com/topoteretes/cognee/graphs/contributors) - AI Agent responses you can rely on. +cognee - Memory for AI Agents  in 5 lines of code | Product Hunt Build dynamic Agent memory using scalable, modular ECL (Extract, Cognify, Load) pipelines. -More on [use-cases](https://docs.cognee.ai/use_cases). +More on [use-cases](https://docs.cognee.ai/use-cases) and [evals](https://github.com/topoteretes/cognee/tree/main/evals)

- Why cognee? + Why cognee?
@@ -160,3 +160,4 @@ We are committed to making open source an enjoyable and respectful experience fo ## Star History [![Star History Chart](https://api.star-history.com/svg?repos=topoteretes/cognee&type=Date)](https://star-history.com/#topoteretes/cognee&Date) + diff --git a/assets/cognee_benefits.png b/assets/cognee_benefits.png index d435bed05..db1e1cc42 100644 Binary files a/assets/cognee_benefits.png and b/assets/cognee_benefits.png differ diff --git a/cognee/api/client.py b/cognee/api/client.py index ad76ca861..b91e149c1 100644 --- a/cognee/api/client.py +++ b/cognee/api/client.py @@ -13,6 +13,7 @@ from cognee.api.v1.datasets.routers import get_datasets_router from cognee.api.v1.cognify.routers import get_code_pipeline_router, get_cognify_router from cognee.api.v1.search.routers import get_search_router from cognee.api.v1.add.routers import get_add_router +from cognee.api.v1.delete.routers import get_delete_router from fastapi import Request from fastapi.encoders import jsonable_encoder from fastapi.exceptions import RequestValidationError @@ -164,6 +165,8 @@ app.include_router(get_settings_router(), prefix="/api/v1/settings", tags=["sett app.include_router(get_visualize_router(), prefix="/api/v1/visualize", tags=["visualize"]) +app.include_router(get_delete_router(), prefix="/api/v1/delete", tags=["delete"]) + codegraph_routes = get_code_pipeline_router() if codegraph_routes: app.include_router(codegraph_routes, prefix="/api/v1/code-pipeline", tags=["code-pipeline"])