From da435e0bf7801f7449d43020aff0f5d03e189bcd Mon Sep 17 00:00:00 2001 From: zachary62 Date: Fri, 21 Mar 2025 15:34:21 -0400 Subject: [PATCH] update readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a5706e2..a8bbf2d 100644 --- a/README.md +++ b/README.md @@ -64,13 +64,13 @@ From there, it's easy to implement popular design patterns like ([Multi-](https: | Tutorial Name | Difficulty | Topics | Description | | :-------------: | :-------------: | :-------------: | :--------------------- | | [Simple Chat](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-chat) | ☆☆☆
*Dummy* | Chat | A basic chat application with conversation history | -| [RAG System](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-rag) | ☆☆☆
*Dummy* | [RAG](https://the-pocket.github.io/PocketFlow/design_pattern/rag.html) | A simple RAG that retrieves relevant documents based on queries | +| [Retrieval-augmented Generation](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-rag) | ☆☆☆
*Dummy* | [RAG](https://the-pocket.github.io/PocketFlow/design_pattern/rag.html) | A simple RAG that retrieves relevant documents based on queries | | [Research Agent](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-agent) | ☆☆☆
*Dummy* | [Agent](https://the-pocket.github.io/PocketFlow/design_pattern/agent.html) | An AI agent that can search the web and answer questions | -| [Research Supervisor](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-supervisor) | ☆☆☆
Dummy | Supervisor| Research agent is getting unreliable... Let's build a supervision process| -| [Parallel Summarizer](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-parallel-batch) | ☆☆☆
*Dummy* | [Parallel](https://the-pocket.github.io/PocketFlow/core_abstraction/parallel.html) | A parallel execution demo that shows 3x speedup | | [Streaming Controller](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-llm-streaming) | ☆☆☆
*Dummy* | Streaming | A real-time LLM streaming demo with user interrupt capability | -| [Extended Thinking](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-thinking) | ☆☆☆
*Dummy* | Thinking | Solve complex reasoning problems through step-by-step thinking | - +| [Parallel Summarizer](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-parallel-batch) | ★☆☆
*Beginner* | [Parallel](https://the-pocket.github.io/PocketFlow/core_abstraction/parallel.html) | A parallel execution demo that shows 3x speedup | +| [Research Supervisor](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-supervisor) | ★☆☆
*Beginner* | Supervisor| Research agent is getting unreliable... Let's build a supervision process| +| [Chain-of-Thought](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-thinking) | ★☆☆
*Beginner* | Thinking | Solve complex reasoning problems through step-by-step thinking | +| [Chat with Memory](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-chat-memory) | ★☆☆
*Beginner* | Memory | A chat application with short-term and long-term memory |