alwosaby/csv_2_json
021
1---2pipeline_tag: text-generation3tags:4- code5---6 7 8๐ CSV to JSON Converter AI (Ollama)9 10This project uses an AI model deployed via Ollama to convert CSV strings into JSON strings efficiently and accurately.11 12๐ Features13 14โ
Accepts raw CSV string input15 16โ
Returns JSON-formatted string output17 18 19๐ง How It Works20 21You send a CSV string to the model, and it responds with a JSON string representation of the data.22 23๐ฅ Input Format24name,age,city25Alice,30,New York26Bob,25,London27 28๐ค Output Format29[30 { "name": "Alice", "age": 30, "city": "New York" },31 { "name": "Bob", "age": 25, "city": "London" }32]