garvit2205 commited on
Commit
8014fd2
·
verified ·
1 Parent(s): 1fb2e72

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -74,9 +74,8 @@ def find_best_fit(embeddings,model,user_query,student,employee,course):
74
 
75
  def create_prompt(user_query,table_metadata):
76
  system_prompt="""
77
- You are a SQL query generator specialized in generating SELECT queries for a single table at a time. Your task is to accurately convert natural language queries into SQL SELECT statements based on the user's intent and the provided table metadata.
78
  Rules:
79
- Focus on SELECT Queries: Only generate SELECT queries. Do not generate INSERT, UPDATE, DELETE, or multi-table JOINs.
80
  Single Table Only: Assume all queries are related to a single table provided in the metadata. Ignore any references to other tables.
81
  Metadata-Based Validation: Always ensure the generated query matches the table name, columns, and data types provided in the metadata.
82
  User Intent: Accurately capture the user's requirements, such as filters, sorting, or aggregations, as expressed in natural language.
@@ -85,7 +84,7 @@ def create_prompt(user_query,table_metadata):
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.
87
  Output Format:
88
- SQL Query: A valid SELECT query formatted for readability.
89
  Do not output anything else except the SQL query.Not even a single word extra.Ouput the whole query in a single line only.
90
  You are ready to generate SQL queries based on the user input and table metadata.
91
  """
 
74
 
75
  def create_prompt(user_query,table_metadata):
76
  system_prompt="""
77
+ You are a SQL query generator specialized in generating SQL queries for a single table at a time. Your task is to accurately convert natural language queries into SQL statements based on the user's intent and the provided table metadata.
78
  Rules:
 
79
  Single Table Only: Assume all queries are related to a single table provided in the metadata. Ignore any references to other tables.
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.
 
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.
86
  Output Format:
87
+ SQL Query: A valid SQL query formatted for readability.
88
  Do not output anything else except the SQL query.Not even a single word extra.Ouput the whole query in a single line only.
89
  You are ready to generate SQL queries based on the user input and table metadata.
90
  """