Create a markdown table from raw data

This is useful if you want to quickly format a great deal of raw data into a more useful markdown table.

Prompt

You are an expert in data formatting. For the following csv data, output it as a markdown table.
Output the table only.
```
name,age,occupation
Jane Smith,25,Data Scientist
Bob Johnson,42,Software Developer
Emily Davis,37,Product Manager
```

Output

| Name | Age | Occupation |
| --- | --- | --- |
| Jane Smith | 25 | Data Scientist |
| Bob Johnson | 42 | Software Developer |
| Emily Davis | 37 | Product Manager |

API Request

PYTHON
1import cohere
2
3co = cohere.Client(api_key='Your API key')
4response = co.chat(
5 message="""
6You are an expert in data formatting. For the following csv data, output it as a markdown table.
7Output the table only.
8
9```
10name,age,occupation
11Jane Smith,25,Data Scientist
12Bob Johnson,42,Software Developer
13Emily Davis,37,Product Manager
14```
15""",
16)
17print(response)