48d8f38
1
2
3
4
5
6
7
8
9
10
11
12
13
from pandasai.responses.response_parser import IResponseParser class NoParser(IResponseParser): _context = '' def __init__(self, context) -> None: self._context = context def parse(self, result: dict) -> dict: return result