feat(agents): implement agent framework and CLI

This commit is contained in:
2025-03-08 15:52:29 +00:00
parent 72268ff440
commit f22ca1d5bd
30 changed files with 3466 additions and 0 deletions

16
tests/fixtures/simple.diff vendored Normal file
View File

@@ -0,0 +1,16 @@
diff --git a/src/utils.py b/src/utils.py
index 1234567..abcdefg 100644
--- a/src/utils.py
+++ b/src/utils.py
@@ -1,5 +1,8 @@
"""Utility functions."""
+def add(a: int, b: int) -> int:
+ """Add two numbers."""
+ return a + b
+
+
def subtract(a: int, b: int) -> int:
"""Subtract two numbers."""
return a - b