←back to thread

222 points futurisold | 1 comments | | HN request time: 0.207s | source
Show context
b0a04gl ◴[] No.44400641[source]
this works like functional programming where every symbol is a pure value and operations compose into clean, traceable flows. when you hit an ambiguous step, the model steps in. just like IO in FP, the generative call is treated as a scoped side effect. this can engage your reasoning graph stays deterministic by default and only defers to the model when needed. crazy demo though, love it
replies(1): >>44400679 #
1. futurisold ◴[] No.44400679[source]
Yes, pretty much. We wanted it be functional from the start. Even low level, everything's functional (it's even called functional.py/core.py). We're using decorators everywhere. This helped a lot with refactoring, extending the framework, containing bugs, etc.