Dreaming / log analysis #76
Replies: 4 comments
-
|
this thread clicked for me after reading this: https://trinkle23897.github.io/learning-beyond-gradients/ i think the self-hosted version of “dreaming” maybe should not start as so maybe the stack is:
then “dreaming” becomes one possible consumer of that substrate, not a special built-in mode. i also think this lines up with #91: before Flue can analyze past runs, it needs runs to be first-class objects. and it lines up with #89 too: append-friendly persistence matters a lot if the thing you are storing is not just conversation state, but learning material. maybe the first Flue-native slice is not “learning” yet, but “make runs observable and attachable.” once that exists, dreaming / eval / local heuristic improvement can be built as recipes or higher-level APIs. |
Beta Was this translation helpful? Give feedback.
-
|
The persist layer that just landed in PR #87 is enough substrate for a v1 of this if dreaming stays read-only and externally-scheduled. The Postgres recipe writes one row per session into SELECT id, data FROM flue_sessions
WHERE updated_at >= NOW() - INTERVAL '24 hours'
ORDER BY updated_at DESC
LIMIT 50;Same shape on D1. Fed into a Flue agent prompt told "review these conversations, look for trouble spots, write findings to Two scope calls that I think keep this from sprawling:
Echoing @stainlu's point: the richer version of this wants the Happy to draft |
Beta Was this translation helpful? Give feedback.
-
|
I kinda agree with @ketankhairnar. But also with @stainlu. To me it sounds more like an observability type of citizen. You'd have a But again, we need the Run as citizen first too. |
Beta Was this translation helpful? Give feedback.
-
|
note: not a plug ...but if you think - please delete this comment cc: @FredKSchott Am running my own agent harness for tacit.sh and planning to do 2 things
with that as context - it opens up "knowledge" / "memory" adapter requirement |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Anthropic just announced this feature of their managed agents platform:
https://x.com/claudeai/status/2052067400690851842?s=46
This makes a lot of sense to me. You can improve a lot about your agent by just asking another agent to review the logs of past runs and look for trouble spots.
This makes a lot of sense for a manager agent platform. The question is how to map that to a self-hosted agent deployment like Flue?
In Cloudflare for example, we have the logs stored via persistence in DO. So we could maybe have an /analyze endpoint that you hit? Or something we do nightly?
But we dont have access to your code, so it's not as easy to translate that analysis to a fix. Hmm...
Beta Was this translation helpful? Give feedback.
All reactions