How can I input hierarchical csv in LLM

I want to in put CSV file like this

but my csv chatbot didn’t recognize well
so can you guys have good tip to treat for these kind of csv?

Inputing Hierarchichical CSV

  1. First of all convert the excel csv into csv objects
  2. Then make the dictionary of that csv objects by tagging the id, name etc.
  3. csv = {id:csvobject1, name:csvobject2, category:csvobject3}
  4. lastly we have to make function that reads the csv objects of the dictionary you made and do operation whatever you want