Spaces:
Sleeping
Sleeping
final
Browse files
app.py
CHANGED
@@ -308,7 +308,7 @@ prompt_1 + "```{loan_data} ```"
|
|
308 |
prompt_2 = """Loan transaction details are the information of transaction happened during a period and contains
|
309 |
details like Month, EMI as monthly amount paid, Payment status as Paid or Unpaid, outstanding Balance after payment of EMI.
|
310 |
|
311 |
-
Return a table of ALL transactions
|
312 |
|
313 |
1. COMBININNG monthly transactions for each month
|
314 |
2. WITHOUT missing rows for ANY month
|
@@ -316,7 +316,7 @@ Return a table of ALL transactions by
|
|
316 |
|
317 |
from text in triple tick marks.
|
318 |
|
319 |
-
Just return the
|
320 |
|
321 |
prompt_template_2 = PromptTemplate.from_template(
|
322 |
#prompt_2 + "```{response_1} {loan_data} ```"
|
|
|
308 |
prompt_2 = """Loan transaction details are the information of transaction happened during a period and contains
|
309 |
details like Month, EMI as monthly amount paid, Payment status as Paid or Unpaid, outstanding Balance after payment of EMI.
|
310 |
|
311 |
+
Return a table of ALL transactions in a pandas data frame object
|
312 |
|
313 |
1. COMBININNG monthly transactions for each month
|
314 |
2. WITHOUT missing rows for ANY month
|
|
|
316 |
|
317 |
from text in triple tick marks.
|
318 |
|
319 |
+
Just return the pandas data frame with name 'data' """
|
320 |
|
321 |
prompt_template_2 = PromptTemplate.from_template(
|
322 |
#prompt_2 + "```{response_1} {loan_data} ```"
|