You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 28, 2025. It is now read-only.
Currently, the NLP processor forces computation of all analysis components (entities, tokens, sentences, POS tags, dependencies) even when a user might only need one specific type of analysis. This is inefficient and leads to unnecessary processing overhead.
Requirements
Add ability to specify which analysis components to run
Allow users to disable unneeded pipeline components for better performance
Update API to support this selective analysis
Implementation Notes
Modify analyze_text() method to accept component selection parameters
Update server API to pass these parameters to the processor
Staff Engineer Review (Alex Rivera)
Currently, the NLP processor forces computation of all analysis components (entities, tokens, sentences, POS tags, dependencies) even when a user might only need one specific type of analysis. This is inefficient and leads to unnecessary processing overhead.
Requirements
Implementation Notes