oncall-guide-ai / src /__init__.py
YanBoChen
feat(user_prompt): update UserPromptProcessor to integrate Llama3-Med42-70B and enhance query validation; add unit tests for condition extraction and matching mechanisms
30fc9ee
raw
history blame contribute delete
409 Bytes
"""
OnCall.ai src package
This package contains the core implementation of the OnCall.ai system.
"""
# Version
__version__ = '0.1.0'
# import key modules
from .llm_clients import llm_Med42_70BClient
from .user_prompt import UserPromptProcessor
from .retrieval import BasicRetrievalSystem
from .medical_conditions import (
CONDITION_KEYWORD_MAPPING,
get_condition_keywords,
validate_condition
)