(text)
| 163 | |
| 164 | |
| 165 | def _extract_text_from_markdown(text): |
| 166 | matches = re.findall(r"```([\s\S]+?)```", text) |
| 167 | if matches: |
| 168 | return matches[0] |
| 169 | return text |
| 170 | |
| 171 | |
| 172 | def get_relevant_tables_from_lm(natural_language_query): |
no outgoing calls
no test coverage detected