mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-19 15:59:37 +00:00
17 lines
516 B
Python
17 lines
516 B
Python
"""Intelligence: Arabic NLP, lead ML scorer, sentiment, intent classification."""
|
|
|
|
from dealix.intelligence.arabic_nlp import ArabicNLP, normalize_arabic, segment_arabic
|
|
from dealix.intelligence.intent import IntentClassifier
|
|
from dealix.intelligence.lead_scorer import LeadFeatures, LeadScorer
|
|
from dealix.intelligence.sentiment import ArabicSentiment
|
|
|
|
__all__ = [
|
|
"ArabicNLP",
|
|
"ArabicSentiment",
|
|
"IntentClassifier",
|
|
"LeadFeatures",
|
|
"LeadScorer",
|
|
"normalize_arabic",
|
|
"segment_arabic",
|
|
]
|