From e5af8e40d6d2b4460d798f39bcf5b46bcae0a13d Mon Sep 17 00:00:00 2001 From: Daulet Amirkhanov Date: Wed, 17 Sep 2025 11:18:08 +0100 Subject: [PATCH] docs: add more details to README on how to run cognee ui (#1414) ## Description Add more details to README.md on how to install cognee to be able to run `cognee-cli -ui` ## Type of Change - [ ] Bug fix (non-breaking change that fixes an issue) - [ ] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [X] Documentation update - [ ] Code refactoring - [ ] Performance improvement - [ ] Other (please specify): ## Changes Made - - - ## Testing ## Screenshots/Videos (if applicable) ## Pre-submission Checklist - [ ] **I have tested my changes thoroughly before submitting this PR** - [ ] **This PR contains minimal changes necessary to address the issue/feature** - [ ] My code follows the project's coding standards and style guidelines - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have added necessary documentation (if applicable) - [ ] All new and existing tests pass - [ ] I have searched existing PRs to ensure this change hasn't been submitted already - [ ] I have linked any relevant issues in the description - [ ] My commits have clear and descriptive messages ## Related Issues ## Additional Notes ## 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. Co-authored-by: Boris --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b9aa9994a..ae1f5f365 100644 --- a/README.md +++ b/README.md @@ -176,7 +176,19 @@ You can also cognify your files and query using cognee UI. Cognee UI 2 -Try cognee UI by runnning ``` cognee-cli -ui ``` command on your terminal. +### Installation for UI + +To use the cognee UI with full functionality, you need to install cognee with API dependencies: + +```bash +pip install 'cognee[api]' +``` + +The UI requires backend server functionality (uvicorn and other API dependencies) which are not included in the default cognee installation to keep it lightweight. + +### Running the UI + +Try cognee UI by running ``` cognee-cli -ui ``` command on your terminal. ## Understand our architecture