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