Update __init__.py to include handling models and remove unpatch in _… (#409)

This commit is contained in:
Pratham Soni
2024-02-06 17:56:06 -05:00
committed by GitHub
parent 5c3ff25a2e
commit 482143f4c3
+3 -2
View File
@@ -8,7 +8,7 @@ from .dsl import (
openai_moderation,
)
from .function_calls import OpenAISchema, openai_schema, Mode
from .patch import apatch, patch
from .patch import apatch, patch, handle_parallel_model, handle_response_model
__all__ = [
"OpenAISchema",
@@ -24,5 +24,6 @@ __all__ = [
"openai_moderation",
"FinetuneFormat",
"Instructions",
"unpatch",
"handle_parallel_model",
"handle_response_model",
]