diff --git a/outlines/models/dottxt.py b/outlines/models/dottxt.py index f0eef2458..7aab4c3c0 100644 --- a/outlines/models/dottxt.py +++ b/outlines/models/dottxt.py @@ -38,9 +38,6 @@ def format_input(self, model_input: str) -> str: def format_output_type(self, output_type: Optional[Any] = None) -> str: """Format the output type to pass to the client. - TODO: `int`, `float` and other Python types could be supported via - JSON Schema. - Parameters ---------- output_type diff --git a/outlines/models/ollama.py b/outlines/models/ollama.py index cc693854d..8965e34fa 100644 --- a/outlines/models/ollama.py +++ b/outlines/models/ollama.py @@ -111,9 +111,6 @@ def format_output_type( ) -> Optional[dict]: """Format the output type to pass to the client. - TODO: `int`, `float` and other Python types could be supported via - JSON Schema. - Parameters ---------- output_type diff --git a/outlines/models/openai.py b/outlines/models/openai.py index 4626bffa8..a1831b530 100644 --- a/outlines/models/openai.py +++ b/outlines/models/openai.py @@ -139,9 +139,6 @@ def format_output_type(self, output_type: Optional[Any] = None) -> dict: """Generate the `response_format` argument to the client based on the output type specified by the user. - TODO: `int`, `float` and other Python types could be supported via - JSON Schema. - Parameters ---------- output_type