From 899fca354eb4a13bf4b6e91a6b86ae3135a0d82d Mon Sep 17 00:00:00 2001 From: Nish Date: Thu, 12 Oct 2023 18:09:46 -0500 Subject: [PATCH] Expose unpatch() function (#114) --- instructor/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/instructor/__init__.py b/instructor/__init__.py index 6a659e5..391c6de 100644 --- a/instructor/__init__.py +++ b/instructor/__init__.py @@ -1,6 +1,6 @@ from .function_calls import OpenAISchema, openai_function, openai_schema from .dsl import MultiTask, Maybe, llm_validator, CitationMixin -from .patch import patch +from .patch import patch, unpatch __all__ = [ "OpenAISchema", @@ -11,4 +11,5 @@ __all__ = [ "openai_schema", "patch", "llm_validator", + "unpatch", ]