UNPKG

neural-nexus-ai-toolkit

Version:

A comprehensive AI toolkit for modern applications - featuring NLP, computer vision, code intelligence, and workflow automation

32 lines 975 B
/** * Advanced Sentiment Analyzer * Standalone sentiment analysis with multiple algorithms */ import { AIConfig, SentimentResult } from '../types'; export declare class SentimentAnalyzer { private config; private logger; constructor(config: AIConfig); analyzeSentiment(text: string): Promise<SentimentResult>; } export declare class LanguageDetector { private config; constructor(config: AIConfig); detectLanguage(text: string): Promise<string>; } export declare class TextGenerator { private config; constructor(config: AIConfig); generateText(prompt: string): Promise<string>; } export declare class SemanticSearch { private config; constructor(config: AIConfig); search(query: string, documents: string[]): Promise<string[]>; } export declare class TextSummarizer { private config; constructor(config: AIConfig); summarize(text: string): Promise<string>; } //# sourceMappingURL=sentiment-analyzer.d.ts.map