ELF v0.2.0: Going Full Async (Shipping Today) ⚡ #29
Replies: 1 comment
-
|
Update: v0.2.0 is live! 🚀 VR cosmic view (experimenting with WebXR for Quest 3) Migration is simple - just add await to your queries. Full docs in the repo. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Heads Up - Breaking Change
We're migrating to full async in the next few hours. ELF now uses peewee-aio + aiosqlite for proper multi-agent coordination.
Why
Swarm-native - ELF's agents are async, database should be too
Non-blocking - Multiple agents query/write simultaneously without blocking
What Changes:
Before:
results = query_system.search(pattern)
After:
results = await query_system.search(pattern)
All methods now require await. Full migration guide coming with the release.
Timeline:
Dropping v0.2.0 in the next few hours. If you need sync, stay on v0.1.x. Otherwise, simple find/replace on your queries and you're good.
Beta Was this translation helpful? Give feedback.
All reactions