alwosaby/csv_2_json
021
๐ CSV to JSON Converter AI (Ollama)
This project uses an AI model deployed via Ollama to convert CSV strings into JSON strings efficiently and accurately.
๐ Features
โ Accepts raw CSV string input
โ Returns JSON-formatted string output
๐ง How It Works
You send a CSV string to the model, and it responds with a JSON string representation of the data.
๐ฅ Input Format name,age,city Alice,30,New York Bob,25,London
๐ค Output Format [ { "name": "Alice", "age": 30, "city": "New York" }, { "name": "Bob", "age": 25, "city": "London" } ]
