CoolFace
Modelpublic

alwosaby/csv_2_json

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes21downloads
README.md32 linesDownload Raw Back to root
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]