dirge-agent 0.13.1

Minimalistic coding agent written in Rust, optimized for memory footprint and performance
1
2
3
4
5
6
7
8
9
10
11
12
13
from functools import lru_cache

@lru_cache
def cached_func(x):
    return x * 2

class MyClass:
    @property
    def my_prop(self):
        return 42

    def regular_method(self):
        return self.my_prop