garvit2205 commited on
Commit
c9a3fe5
·
verified ·
1 Parent(s): 46a20e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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.