mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-26 13:59:49 +00:00
Async support for OpenAIFunctionsAgentOutputParser (#11140)
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
import asyncio
|
||||||
import json
|
import json
|
||||||
from json import JSONDecodeError
|
from json import JSONDecodeError
|
||||||
from typing import List, Union
|
from typing import List, Union
|
||||||
@@ -80,5 +81,12 @@ class OpenAIFunctionsAgentOutputParser(AgentOutputParser):
|
|||||||
message = result[0].message
|
message = result[0].message
|
||||||
return self._parse_ai_message(message)
|
return self._parse_ai_message(message)
|
||||||
|
|
||||||
|
async def aparse_result(
|
||||||
|
self, result: List[Generation]
|
||||||
|
) -> Union[AgentAction, AgentFinish]:
|
||||||
|
return await asyncio.get_running_loop().run_in_executor(
|
||||||
|
None, self.parse_result, result
|
||||||
|
)
|
||||||
|
|
||||||
def parse(self, text: str) -> Union[AgentAction, AgentFinish]:
|
def parse(self, text: str) -> Union[AgentAction, AgentFinish]:
|
||||||
raise ValueError("Can only parse messages")
|
raise ValueError("Can only parse messages")
|
||||||
|
Reference in New Issue
Block a user