New learner here. I'm testing the api function to ask the model to read and interpret the data from SQL DB. The table is relatively small hence i use select all to pass the data to the model. I found wired things when the DB table has 200+ rows (5 cols), the model is not able to sum all the sales records. But if i reduce it to < 100 rows, the model can get the right sales number summation. Is there any limitation for the model to interpret the data? Also if i put 500 rows into csv, the model seems ok to read and interpret it properly. i use below function:
getTodaySales = json.loads(db.run_query("select * from TodaySalesTable"))