(no title)
kveykva | 2 years ago
AutoGPT and BabyAGI are probably the two most well known examples so far.
A significant struggle when building these types of applications is understanding and debugging behavior many execution steps deep. This tries to assist with that by giving a framework for structuring the way your agent runs.
Maybe a similar concept is breaking out a web application into services, or individual route handlers, rather than implementing everything as one massive loop that responds to events.
hgomersall|2 years ago
gerad|2 years ago
Creating one of these event driven systems is somewhat trivial. Node has event emitter built in for example.
Being able to monitor, debug, scale it and ensure it’s robust to failure is much harder.
In that respect it sounds kinda like tray.io. [1]
1: https://youtu.be/g_2HNv8HZcA
kveykva|2 years ago