MCPcopy Create free account
hub / github.com/NanGePlus/LightRAGTest / csv_string_to_list

Function csv_string_to_list

LightRAG/lightrag/utils.py:204–207  ·  view source on GitHub ↗
(csv_string: str)

Source from the content-addressed store, hash-verified

202
203
204def csv_string_to_list(csv_string: str) -> List[List[str]]:
205 output = io.StringIO(csv_string)
206 reader = csv.reader(output)
207 return [row for row in reader]
208
209
210def save_data_to_file(data, file_name):

Callers 1

process_combine_contextsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected