From f474ed052f837d9cea57a90e4f43f7ee1f1aa755 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 01:18:03 +0000 Subject: [PATCH 1/3] Initial plan From 5afd25659fcd423e758f38441018c92d8d01a792 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 01:19:29 +0000 Subject: [PATCH 2/3] Add missing Quick Start steps to STARTER_KIT.md Co-authored-by: ZhenhangTung <8170159+ZhenhangTung@users.noreply.github.com> --- docs/STARTER_KIT.md | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/docs/STARTER_KIT.md b/docs/STARTER_KIT.md index 7d322b8d..7ee67d23 100644 --- a/docs/STARTER_KIT.md +++ b/docs/STARTER_KIT.md @@ -33,12 +33,45 @@ cd EverMemOS # Start all services with Docker docker compose up -d +``` + +### 2. Install uv and Dependencies + +```bash +# Install uv package manager +curl -LsSf https://astral.sh/uv/install.sh | sh + +# Install dependencies +uv sync +``` + +### 3. Configure API Keys + +```bash +# Copy environment template +cp env.template .env +# Edit .env and set: +# - LLM_API_KEY (for memory extraction) +# - VECTORIZE_API_KEY (for embedding/rerank) +``` + +### 4. Start Server + +```bash +# Start the EverMemOS server +uv run python src/run.py +``` + +### 5. Verify Installation + +```bash # Verify services are running curl http://localhost:1995/health +# Expected response: {"status": "healthy", ...} ``` -### 2. Store Your First Memory +### 6. Store Your First Memory ```bash curl -X POST "http://localhost:1995/api/v1/memories" \ @@ -51,7 +84,7 @@ curl -X POST "http://localhost:1995/api/v1/memories" \ }' ``` -### 3. Search Memories +### 7. Search Memories ```bash curl -X GET "http://localhost:1995/api/v1/memories/search" \ From 590010996571275bc2807d30bb7b4e2a9520e6d0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 01:26:56 +0000 Subject: [PATCH 3/3] Restructure Quick Start to keep original step numbers 2 and 3 Co-authored-by: ZhenhangTung <8170159+ZhenhangTung@users.noreply.github.com> --- docs/STARTER_KIT.md | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/docs/STARTER_KIT.md b/docs/STARTER_KIT.md index 7ee67d23..5f4063e0 100644 --- a/docs/STARTER_KIT.md +++ b/docs/STARTER_KIT.md @@ -33,45 +33,29 @@ cd EverMemOS # Start all services with Docker docker compose up -d -``` - -### 2. Install uv and Dependencies -```bash # Install uv package manager curl -LsSf https://astral.sh/uv/install.sh | sh # Install dependencies uv sync -``` - -### 3. Configure API Keys -```bash # Copy environment template cp env.template .env # Edit .env and set: # - LLM_API_KEY (for memory extraction) # - VECTORIZE_API_KEY (for embedding/rerank) -``` - -### 4. Start Server -```bash # Start the EverMemOS server uv run python src/run.py -``` - -### 5. Verify Installation -```bash # Verify services are running curl http://localhost:1995/health # Expected response: {"status": "healthy", ...} ``` -### 6. Store Your First Memory +### 2. Store Your First Memory ```bash curl -X POST "http://localhost:1995/api/v1/memories" \ @@ -84,7 +68,7 @@ curl -X POST "http://localhost:1995/api/v1/memories" \ }' ``` -### 7. Search Memories +### 3. Search Memories ```bash curl -X GET "http://localhost:1995/api/v1/memories/search" \