(schemas: str, scope="USA")
| 15 | ) |
| 16 | |
| 17 | def make_default_messages(schemas: str, scope="USA"): |
| 18 | default_messages = [] |
| 19 | |
| 20 | default_messages.extend(get_few_shot_example_messages(mode="text_to_sql", scope=scope)) |
| 21 | return default_messages |
| 22 | |
| 23 | |
| 24 | def make_rephrase_msg_with_schema_and_warnings(): |
no test coverage detected