Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 454 Bytes

File metadata and controls

13 lines (9 loc) · 454 Bytes

Coding Agent

A simple coding agent built in ~200 lines of Python. It uses an LLM with three basic tools (read files, list files, edit files) to help you with coding tasks.

Example

You: Make me a new file called hello.py and implement hello world in it
Assistant: Done! Created hello.py with a hello world implementation.

You: Edit hello.py and add a function for multiplying two numbers
Assistant: Added a multiply function to hello.py.