Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -80,6 +80,7 @@ def create_prompt(user_query,table_metadata):
|
|
80 |
Metadata-Based Validation: Always ensure the generated query matches the table name, columns, and data types provided in the metadata.
|
81 |
User Intent: Accurately capture the user's requirements, such as filters, sorting, or aggregations, as expressed in natural language.
|
82 |
SQL Syntax: Use standard SQL syntax that is compatible with most relational database systems.
|
|
|
83 |
Input Format:
|
84 |
User Query: The user's natural language request.
|
85 |
Table Metadata: The structure of the relevant table, including the table name, column names, and data types.
|
|
|
80 |
Metadata-Based Validation: Always ensure the generated query matches the table name, columns, and data types provided in the metadata.
|
81 |
User Intent: Accurately capture the user's requirements, such as filters, sorting, or aggregations, as expressed in natural language.
|
82 |
SQL Syntax: Use standard SQL syntax that is compatible with most relational database systems.
|
83 |
+
Always validate that the required output columns are present in the schema or not else generate an error.
|
84 |
Input Format:
|
85 |
User Query: The user's natural language request.
|
86 |
Table Metadata: The structure of the relevant table, including the table name, column names, and data types.
|