Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.83 KB

File metadata and controls

52 lines (38 loc) · 1.83 KB

Practical Python Scripts

Python scripts & AI Agent tutorials collection.

Documentation

Document Description
agent-tutorial-README.md Agent Tech Stack Quick Reference (Chinese) -- models, frameworks, tools, memory, deployment, observability
agent-tutorial-README_EN.md Agent Tech Stack Quick Reference (English)
dev-tools-handbook.md Dev Tools Zero-to-Hero (Chinese) -- Shell, Git, npm, pip, Docker + cheat sheet
dev-tools-handbook_EN.md Dev Tools Zero-to-Hero (English)

Projects

Project Description Language Level
agent-builder Build an AI Agent from scratch -- 6-step tutorial CN · EN Beginner
agent-builder-pro Advanced -- Shell, RAG, multi-agent, WebUI CN · EN Advanced

Quick Start

Clone everything

git clone https://github.com/zyk632/practical-python-scripts.git
cd practical-python-scripts

# Beginner
cd agent-builder && pip install -r requirements.txt
python step01_hello_llm.py

# Advanced
cd agent-builder-pro && pip install -r requirements.txt
python step_p1_shell_executor.py

Clone a single project (sparse checkout)

# agent-builder only
git clone --filter=blob:none --sparse https://github.com/zyk632/practical-python-scripts.git
cd practical-python-scripts
git sparse-checkout set agent-builder

# agent-builder-pro only
git clone --filter=blob:none --sparse https://github.com/zyk632/practical-python-scripts.git
cd practical-python-scripts
git sparse-checkout set agent-builder-pro