From 390c8c9b0622e6bb6bc15b69ad48dbecd35b1e7e Mon Sep 17 00:00:00 2001 From: Zachary Huang <33015448+zachary62@users.noreply.github.com> Date: Sun, 4 May 2025 17:08:47 -0400 Subject: [PATCH] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4ef2e5d..15f476d 100644 --- a/README.md +++ b/README.md @@ -73,13 +73,16 @@ This is a tutorial project of [Pocket Flow](https://github.com/The-Pocket/Pocket ## 🚀 Getting Started 1. Clone this repository + ```bash + git clone https://github.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge + ``` -2. Install dependencies: +3. Install dependencies: ```bash pip install -r requirements.txt ``` -3. Set up LLM in [`utils/call_llm.py`](./utils/call_llm.py) by providing credentials. By default, you can use the AI Studio key with this client for Gemini Pro 2.5: +4. Set up LLM in [`utils/call_llm.py`](./utils/call_llm.py) by providing credentials. By default, you can use the AI Studio key with this client for Gemini Pro 2.5: ```python client = genai.Client( @@ -92,7 +95,7 @@ This is a tutorial project of [Pocket Flow](https://github.com/The-Pocket/Pocket python utils/call_llm.py ``` -4. Generate a complete codebase tutorial by running the main script: +5. Generate a complete codebase tutorial by running the main script: ```bash # Analyze a GitHub repository python main.py --repo https://github.com/username/repo --include "*.py" "*.js" --exclude "tests/*" --max-size 50000