def LANGCHAIN_DECIDER_PROMPT()

in nl2sql/tasks/table_selection/core.py [0:0]


    def LANGCHAIN_DECIDER_PROMPT(self) -> _CoreTableSelectorPrompt:
        return _CoreTableSelectorPrompt(
            prompt_id="LANGCHAIN_DECIDER_PROMPT",
            prompt_template=lc_prompts.DECIDER_PROMPT,
            call_for_each_table=False,
            post_processor=lambda x: [i.strip() for i in x.split(",")],
        )