24 lines
581 B
Python
24 lines
581 B
Python
"""
|
|
Research Intent Package
|
|
|
|
This package provides intent-driven research capabilities:
|
|
- Intent inference from user input
|
|
- Targeted query generation
|
|
- Intent-aware result analysis
|
|
|
|
Author: ALwrity Team
|
|
Version: 1.0
|
|
"""
|
|
|
|
from .research_intent_inference import ResearchIntentInference
|
|
from .intent_query_generator import IntentQueryGenerator
|
|
from .intent_aware_analyzer import IntentAwareAnalyzer
|
|
from .intent_prompt_builder import IntentPromptBuilder
|
|
|
|
__all__ = [
|
|
"ResearchIntentInference",
|
|
"IntentQueryGenerator",
|
|
"IntentAwareAnalyzer",
|
|
"IntentPromptBuilder",
|
|
]
|