Spaces:
Sleeping
Sleeping
File size: 564 Bytes
f78a3ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import json
def load_json(file_path):
"""
Load JSON file from the specified path.
"""
try:
with open(file_path, "r") as file:
return json.load(file)
except json.JSONDecodeError:
raise ValueError(f"Invalid JSON format in file: {file_path}")
def format_prompt(question, schema, metadata, instructions):
"""
Combines schema, metadata, and question into a single prompt.
"""
return f"""
### Instructions
{instructions}
### Schema
{schema}
### Metadata
{metadata}
### Question
{question}
### SQL
"""
|