The "cool visuals over verified results" critique is valid but undersells the harder problem underneath. For any Wall Street deployment you need more than results-match-reality, you need a decision record that satisfies MiFID II / FINRA rules about investment recommendation audit. Persistent workspaces + memory files are a feature for the researcher and a regulatory question mark for compliance. If a regulator asks "what did the agent recommend last Tuesday and which data snapshot did it reason over?", can you answer? With the auto-generated Python module approach you'd need to pin module version, data fetch timestamps, model version, and prompt state, all to a single immutable record per recommendation. None of that falls out of a normal agent framework. Curious whether LangAlpha has thought about signed execution logs per session. Not as a sales feature but as a prerequisite for a firm running this in anger. Financial is one of the few verticals where "we don't know what we said yesterday" is a deployment blocker.
This is some quality critique i am expecting.
We currently persist logs for every single line of code agent executed in the sandbox. We also have agent trajectory persisted with infra from langchain ecosystem.
That said, i share the same believe that lots of work need to be done for compliance if deploying this for any firm on the street.
>Curious whether LangAlpha has thought about signed execution logs per session.
This is defiantly what we have on the roadmap but feels a little heavy to introduce at early stage.