(self, old_questions: str = "[]")
| 318 | return get_guess_question_template()['system'].format(lang=self.lang, articles_number=articles_number, sqlbot_name=self.sqlbot_name) |
| 319 | |
| 320 | def guess_user_question(self, old_questions: str = "[]"): |
| 321 | return get_guess_question_template()['user'].format(question=self.question, schema=self.db_schema, |
| 322 | old_questions=old_questions) |
| 323 | |
| 324 | def filter_sys_question(self): |
| 325 | return get_permissions_template()['system'].format(lang=self.lang, engine=self.engine, sqlbot_name=self.sqlbot_name) |
no test coverage detected