(scope="USA")
| 24 | return extracted_text |
| 25 | |
| 26 | def get_all_table_names(scope="USA") -> List[str]: |
| 27 | if scope == "USA": |
| 28 | return [table["name"] for table in table_details["tables"]] |
| 29 | elif scope == "SF": |
| 30 | return [table["name"] for table in sf_table_details["tables"]] |
| 31 | return [] |
| 32 | |
| 33 | |
| 34 | def get_table_schemas(table_names: List[str] = None, scope="USA") -> str: |
no outgoing calls
no test coverage detected