-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
43 lines (41 loc) · 1019 Bytes
/
__init__.py
File metadata and controls
43 lines (41 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""Core DSPy Ozempic classifier package."""
from .common import (
CLASSIFICATION_CONFIGS,
ClassificationConfig,
ComplaintClassifier,
classification_metric,
configure_lm,
create_classification_signature,
evaluate_model,
prepare_datasets,
)
from .serving.service import (
AECategoryRequest,
AEPCRequest,
ComplaintRequest,
ComplaintResponse,
PCCategoryRequest,
get_ae_category_classifier,
get_ae_pc_classifier,
get_classification_function,
get_pc_category_classifier,
)
__all__ = [
"CLASSIFICATION_CONFIGS",
"ClassificationConfig",
"create_classification_signature",
"ComplaintClassifier",
"classification_metric",
"configure_lm",
"evaluate_model",
"prepare_datasets",
"ComplaintRequest",
"AEPCRequest",
"AECategoryRequest",
"PCCategoryRequest",
"ComplaintResponse",
"get_ae_pc_classifier",
"get_ae_category_classifier",
"get_pc_category_classifier",
"get_classification_function",
]