Update README.md

This commit is contained in:
Zachary Huang 2025-01-10 11:19:26 -05:00 committed by GitHub
parent b0322b099a
commit 3115230c31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 24 additions and 11 deletions

View File

@ -11,13 +11,15 @@
<br>
A [100-line](pocketflow/__init__.py) minimalist LLM framework for ([Multi-](https://minillmflow.github.io/PocketFlow/multi_agent.html))[Agents](https://minillmflow.github.io/PocketFlow/agent.html), [task decomposition](https://minillmflow.github.io/PocketFlow/decomp.html), [RAG](https://minillmflow.github.io/PocketFlow/rag.html), etc.
A [100-line](pocketflow/__init__.py) minimalist LLM framework for ([Multi-](https://minillmflow.github.io/PocketFlow/multi_agent.html))[Agents](https://minillmflow.github.io/PocketFlow/agent.html), [Task Decomposition](https://minillmflow.github.io/PocketFlow/decomp.html), [RAG](https://minillmflow.github.io/PocketFlow/rag.html), etc.
- Install via ```pip install pocketflow```, or just copy the [source codes](pocketflow/__init__.py) (only 100 lines)
- **💡 Pro tip!!** Build LLM apps with LLMs assistants (ChatGPT, Claude, Cursor.ai, etc.)
- **Claude Project (Sonnet 3.5 strongly recommended!):**
<details>
<summary><b>Claude Project</b></summary>
- Create a [project](https://www.anthropic.com/news/projects) and upload the [docs](docs) to project knowledge
@ -29,13 +31,24 @@ A [100-line](pocketflow/__init__.py) minimalist LLM framework for ([Multi-](http
Think out aloud for above first and ask users if your design makes sense.
4. Finally, implement. Start with simple, minimalistic codes without, for example, typing.
```
- Ask it to build LLM application!
- Ask it to build LLM app (Sonnet 3.5 strongly recommended)!
```
Help me build a chatbot based on a directory of PDFs.
```
</details>
- **ChatGPT:** Check out [GPT assistant](https://chatgpt.com/g/g-677464af36588191b9eba4901946557b-mini-llm-flow-assistant)
<details>
<summary><b>ChatGPT</b></summary>
- GPT store seems to use older models. It's good at explaining but not good at coding.
- Try the [GPT assistant](https://chatgpt.com/g/g-677464af36588191b9eba4901946557b-mini-llm-flow-assistant). However, it uses older models, which are good for explaining but not good at coding.
- For stronger coding capabilities, consider sending the [docs](docs) to more advanced models like O1.
- Paste the docs link (https://github.com/miniLLMFlow/PocketFlow/tree/main/docs) to [Gitingest](https://gitingest.com/).
- Then, paste the generated contents into your O1 prompt, and ask it to build LLM app.
</details>
- Alternatively, send the [docs](docs) to newer models like O1 for coding.
Documentation: https://minillmflow.github.io/PocketFlow/