Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -46,7 +46,8 @@ TEMP_PATH = None
|
|
46 |
#TABLE_PATH = None
|
47 |
|
48 |
#System prompt
|
49 |
-
|
|
|
50 |
You are working with a retrieval-augmented generation (RAG) setup. Your task is to generate a response based on the context provided and the question asked. Consider only the following context strictly, and use it to answer the question. If the question cannot be answered using the context, respond with: "The information requested is not mentioned in the context."
|
51 |
|
52 |
Context:
|
@@ -59,26 +60,26 @@ Question:
|
|
59 |
|
60 |
Response:
|
61 |
"""
|
|
|
62 |
|
|
|
|
|
63 |
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
# Context:
|
70 |
-
# {context}
|
71 |
|
72 |
-
|
73 |
-
|
74 |
|
75 |
-
|
76 |
|
77 |
-
|
78 |
-
|
79 |
|
80 |
-
|
81 |
-
|
82 |
|
83 |
#HFT = os.getenv('HF_TOKEN')
|
84 |
#client = InferenceClient(api_key=HFT)
|
@@ -163,6 +164,7 @@ def chat():
|
|
163 |
|
164 |
return render_template('chat.html', history=session['history'])
|
165 |
|
|
|
166 |
@app.route('/create-db', methods=['GET', 'POST'])
|
167 |
def create_db():
|
168 |
if request.method == 'POST':
|
@@ -207,6 +209,45 @@ def create_db():
|
|
207 |
return redirect(url_for('list_dbs'))
|
208 |
|
209 |
return render_template('create_db.html')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
|
211 |
@app.route('/list-dbs', methods=['GET'])
|
212 |
def list_dbs():
|
|
|
46 |
#TABLE_PATH = None
|
47 |
|
48 |
#System prompt
|
49 |
+
|
50 |
+
'''PROMPT_TEMPLATE = """
|
51 |
You are working with a retrieval-augmented generation (RAG) setup. Your task is to generate a response based on the context provided and the question asked. Consider only the following context strictly, and use it to answer the question. If the question cannot be answered using the context, respond with: "The information requested is not mentioned in the context."
|
52 |
|
53 |
Context:
|
|
|
60 |
|
61 |
Response:
|
62 |
"""
|
63 |
+
'''
|
64 |
|
65 |
+
PROMPT_TEMPLATE = """
|
66 |
+
You are working as a retrieval-augmented generation (RAG) assistant specializing in providing precise and accurate responses. Generate a response based only on the provided context and question, following these concrete instructions:
|
67 |
|
68 |
+
- **Adhere strictly to the context:** Use only the information in the context to answer the question. Do not add any external details or assumptions.
|
69 |
+
- **Handle multiple chunks:** The context is divided into chunks, separated by "###". Query-related information may be present in any chunk.
|
70 |
+
- **Focus on relevance:** Identify and prioritize chunks relevant to the question while ignoring unrelated chunks.
|
71 |
+
- **Answer concisely and factually:** Provide clear, direct, and structured responses based on the retrieved information.
|
|
|
|
|
|
|
72 |
|
73 |
+
Context:
|
74 |
+
{context}
|
75 |
|
76 |
+
---
|
77 |
|
78 |
+
Question:
|
79 |
+
{question}
|
80 |
|
81 |
+
Response:
|
82 |
+
"""
|
83 |
|
84 |
#HFT = os.getenv('HF_TOKEN')
|
85 |
#client = InferenceClient(api_key=HFT)
|
|
|
164 |
|
165 |
return render_template('chat.html', history=session['history'])
|
166 |
|
167 |
+
'''
|
168 |
@app.route('/create-db', methods=['GET', 'POST'])
|
169 |
def create_db():
|
170 |
if request.method == 'POST':
|
|
|
209 |
return redirect(url_for('list_dbs'))
|
210 |
|
211 |
return render_template('create_db.html')
|
212 |
+
'''
|
213 |
+
@app.route('/create-db', methods=['GET', 'POST'])
|
214 |
+
def create_db():
|
215 |
+
if request.method == 'POST':
|
216 |
+
db_name = request.form['db_name']
|
217 |
+
|
218 |
+
# Ensure the upload folder exists
|
219 |
+
os.makedirs(app.config['UPLOAD_FOLDER'], exist_ok=True)
|
220 |
+
|
221 |
+
# Define the base upload path
|
222 |
+
upload_base_path = os.path.join(app.config['UPLOAD_FOLDER'], secure_filename(db_name))
|
223 |
+
os.makedirs(upload_base_path, exist_ok=True)
|
224 |
+
|
225 |
+
# Check for uploaded folder or files
|
226 |
+
folder_files = request.files.getlist('folder')
|
227 |
+
single_files = request.files.getlist('file')
|
228 |
+
|
229 |
+
if folder_files and any(file.filename for file in folder_files):
|
230 |
+
# Process folder files
|
231 |
+
for file in folder_files:
|
232 |
+
file_path = os.path.join(upload_base_path, secure_filename(file.filename))
|
233 |
+
os.makedirs(os.path.dirname(file_path), exist_ok=True)
|
234 |
+
file.save(file_path)
|
235 |
+
|
236 |
+
elif single_files and any(file.filename for file in single_files):
|
237 |
+
# Process single files
|
238 |
+
for file in single_files:
|
239 |
+
file_path = os.path.join(upload_base_path, secure_filename(file.filename))
|
240 |
+
file.save(file_path)
|
241 |
+
|
242 |
+
else:
|
243 |
+
return "No files uploaded", 400
|
244 |
+
|
245 |
+
# Generate datastore
|
246 |
+
generate_data_store(upload_base_path, db_name)
|
247 |
+
|
248 |
+
return redirect(url_for('list_dbs'))
|
249 |
+
|
250 |
+
return render_template('create_db.html')
|
251 |
|
252 |
@app.route('/list-dbs', methods=['GET'])
|
253 |
def list_dbs():
|