Some HELP choosing the best architecture #1727
-
HI Team Im working on a langgraph app to provide bookkeeping/accounting services for simple property rental companies.. My aim has been to create an "agentic" system.. Where the user has various "jobs to be done" like
MY question is what do you think is the correct architecture here? or or or something else? Many thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @darthShana - they're not mutually exclusive, but I typically start with reflection/validation/critique (including static code checks if relevant) since it's:
The supervisor pattern I think is easier to implement and extend than the mulit-agent collaboration example. If you find that the intent detection and routing of work needs to be improved, you can use something like the supervisor pattern and optimize the prompt and checks there. |
Beta Was this translation helpful? Give feedback.
Hi @darthShana - they're not mutually exclusive, but I typically start with reflection/validation/critique (including static code checks if relevant) since it's:
It's especially useful if you're doing async/background work. If the user is waiting for a response you can surface the initial output and then indicate that it's checking its work.
The supervisor pattern I think is easier to implement and extend than the mulit-agent collaboration example. If you find that the intent detection and routing of work needs to be improved, you can use…