📄 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" }
]