/* !
Content Analyzer Port for NLP
This module contains the implementation of the Content Analysis Service for NLP.
It provides the functionality to analyze the content of a given ContentItem by
a NLP using a defined prompt and return the analysis results.
An NLP API has the following requirements:
- The prompt to be used for the analysis
- The maximum number of tokens to be generated
- The data to be analyzed
As part of the Hexagonal Architecture there is no direct dependency on the actual
implementation of the NLP service, this is provided by an adapter.
The NlpContentAnalyzer struct implements the ContentAnalysisService trait for NLP.
This port defines the contract for the NLP content analysis service which can be
implemented by an adapter to interface with an NLP system.
*/
use Value;
use ContentItem;
use ContentAnalysisService;
;