An autonomous, multi-turn AI debugging agent built from scratch using AST surgery.
Project description
PyFix Agent: Autonomous ReAct Debugging Loop
An autonomous, multi-turn AI debugging agent built entirely from scratch in Python.
Unlike standard wrappers that simply ask an LLM to "fix this code," PyFix Agent implements a custom ReAct (Reasoning and Acting) state machine and utilizes Abstract Syntax Tree (AST) manipulation to surgically patch Python files in real-time. It evaluates its own fixes by executing the code inside a subprocess, iterating dynamically until the script passes or it reaches the maximum iteration limit.
Installation
You can install PyFix Agent directly from PyPI:
pip install pyfix-agent
This will automatically register the pyfix-agent executable in your terminal path.
Install from Source
If you want to run or modify the source code locally:
# Clone the repository
git clone https://github.com/LightY-01/pyfix-agent.git
cd pyfix-agent
# Install package in editable mode
pip install -e .
Configuration
Export your Hugging Face Hub token to your environment variables to ensure secure API access:
Bash (Linux/macOS):
export HF_TOKEN="your_huggingface_token_here"
PowerShell (Windows):
$env:HF_TOKEN="your_huggingface_token_here"
CLI Usage Guide
Point the agent at any broken Python script. Use the --verbose flag to watch the ReAct state machine's internal thought process.
# Run the agent CLI
pyfix-agent --script my_broken_code.py --verbose --max_iter 5
# Run using a specific Hugging Face model
pyfix-agent --script my_broken_code.py --model "mistralai/Mixtral-8x7B-Instruct-v0.1" --verbose
CLI Command Options
| Argument | Type | Default | Description |
|---|---|---|---|
--script |
str |
Required | Path to the broken Python script to debug |
--max_iter |
int |
5 |
Maximum number of debugging iterations |
--verbose |
flag |
False |
Enable logging of reasoning, tracebacks, actions, and observations in ReAct format |
--model |
str |
Qwen/Qwen2.5-72B-Instruct:cheapest |
Model endpoint ID on Hugging Face Serverless API |
How It Works
- Execution Engine: Runs the target script via Python subprocesses, capturing standard outputs, standard errors, and stack traces with safety timeout thresholds.
- Context Memory: Maintains a chronological conversation history array, allowing the LLM to learn from its previously failed patching attempts without losing the original code context.
- AST Surgery: Parses the LLM's response and uses Python's native
ast.NodeTransformerto swap out broken function nodes with the corrected logic, leaving the rest of the file entirely untouched. It also automatically extracts and moves any newly declared import statements to the top level of the script.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyfix_agent-2.0.1.tar.gz.
File metadata
- Download URL: pyfix_agent-2.0.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46bacc7ae476a4818cba152a2843a07d09806d595bcc8453d88991642ef8f38d
|
|
| MD5 |
019dec9263ec0623583bff2a8a0c657f
|
|
| BLAKE2b-256 |
b830936735b144f62e0cb14aeb1c51d0e29cec923589ea3abcb389315f409a91
|
File details
Details for the file pyfix_agent-2.0.1-py3-none-any.whl.
File metadata
- Download URL: pyfix_agent-2.0.1-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a76116eb21c454e7db39535756e26accb7d79e87801ba1530b440b5891531db
|
|
| MD5 |
00585b09aa9a47830364ad17cff26363
|
|
| BLAKE2b-256 |
0ca26ea5dae5af6e07ead260261f8a13c9a9f6778359a961bce630664c141430
|