mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-05 21:12:48 +00:00
Implement str one
This commit is contained in:
@@ -172,15 +172,12 @@ class SimpleJsonOutputParser(BaseOutputParser[Any]):
|
|||||||
return "simple_json_output_parser"
|
return "simple_json_output_parser"
|
||||||
|
|
||||||
|
|
||||||
class PartialJsonOutputParser(BaseCumulativeTransformOutputParser[Any]):
|
class PartialFunctionsJsonOutputParser(BaseCumulativeTransformOutputParser[Any]):
|
||||||
from_function_args: bool = False
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def _type(self) -> str:
|
def _type(self) -> str:
|
||||||
return "partial_json"
|
return "partial_functions_json"
|
||||||
|
|
||||||
def parse_result(self, result: List[Generation]) -> Any:
|
def parse_result(self, result: List[Generation]) -> Any:
|
||||||
if self.from_function_args:
|
|
||||||
if len(result) != 1:
|
if len(result) != 1:
|
||||||
raise OutputParserException(
|
raise OutputParserException(
|
||||||
f"Expected exactly one result, but got {len(result)}"
|
f"Expected exactly one result, but got {len(result)}"
|
||||||
@@ -202,3 +199,12 @@ class PartialJsonOutputParser(BaseCumulativeTransformOutputParser[Any]):
|
|||||||
|
|
||||||
def parse(self, text: str) -> Any:
|
def parse(self, text: str) -> Any:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class PartialJsonOutputParser(BaseCumulativeTransformOutputParser[Any]):
|
||||||
|
@property
|
||||||
|
def _type(self) -> str:
|
||||||
|
return "partial_functions_json"
|
||||||
|
|
||||||
|
def parse(self, text: str) -> Any:
|
||||||
|
return parse_json_markdown(text)
|
||||||
|
Reference in New Issue
Block a user