Parse text into agent action/finish.
(self, text: str)
| 34 | |
| 35 | @abstractmethod |
| 36 | def parse(self, text: str) -> Union[AgentAction, AgentFinish]: |
| 37 | """Parse text into agent action/finish.""" |
| 38 | |
| 39 | |
| 40 | class Agent(BaseSingleActionAgent): |
no outgoing calls
no test coverage detected