Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 548 Bytes

File metadata and controls

22 lines (15 loc) · 548 Bytes

Step 1 - Self-Extending Tools

Adds ONE line - load_tools_from_directory=True - to enable tool hot-reload.

Run

pip install -r requirements.txt
python agent.py

Try these

🦆 create a tool called password_generator that makes random passwords, then use it to make a 20-char password
🦆 build a tool to calculate the nth Fibonacci number, then get fib(15)
🦆 make a QR code generator tool, then make one for "hello world"

Watch tools/ - new files appear as the agent works.

Next → step-02-system-prompt.