This application uses a multi-agent LLM workflow to identify whether user feedback from a clinical trial is an adverse event or not.
The workflow has tasks, each running a different model to evaluate the text for potential adverse events. Finally, it summarizes the results in a Pharmacovigilance assessment summary.
Here's a breakdown of the workflow:
%%{ init: { 'theme': 'base', 'themeVariables': { 'primaryColor': '#BB2528', 'primaryTextColor': '#fff', 'primaryBorderColor': '#7C0000', 'lineColor': '#F8B229', 'secondaryColor': '#006100', 'tertiaryColor': '#fff' } } }%% flowchart LR A[Context Analysis] --> C[LLM as a Judge Analysis] B[BioClin Analysis] --> C C --> D[Judge Feedback to Context Analysis] C --> E[Judge Feedback to BioClin Analysis] D --> F[Context Analysis - Revised] E --> G[BioClin Analysis - Revised] F --> H[Judge Summary] G --> H C --> H