Just a silly question
So, do I have it right that actually Cursor does not support attaching the *.xlsx
files as context? Something like “Analyze the structure of the @name-of-a-sheet.xlsx
and find out whether it contains a field called field_name
.”?
Or I am supposed to convert my file into .csv
first?
Thanks
2 Likes
.csv is the main format, which generally doesn’t require any additional packages to handle. However, for .xlsx, you might need to install an additional package (openpyxl for Python), and it’s still a bit trickier than .csv. Thus, that might be the reason it’s not yet implemented in Cursor and many others too. I’d rather go with .csv.
1 Like