CoolFace
Modelpublic

alwosaby/csv_2_json

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes21downloads
Model Card

๐Ÿ“„ 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" } ]