Which table format do LLMs understand best?
111–115 of 115 posts
Re: Which table format do LLMs understand best?
#112I was curious enough to have Codex create a similar benchmark: https://github.com/jcheng5/table-formats With 1000 rows and 100 samples and markdown-kv, I got these scores: - gpt-4.1-nano: 52% - gpt-4.1-mini: 72% - gpt-4.1: 93% - gpt-5: 100% I was so surprised by gpt-5 getting 100% that I ran it again with 1000 samples. It got 999 correct, and one wrong. To reproduce it yourself, clone the repo, add a .env file with O…
Re: Which table format do LLMs understand best?
#113CSV works okay but you lose a lot of context about what the columns actually represent. The model performs better when it can 'see' the structure clearly.
Re: Which table format do LLMs understand best?
#114I was curious enough to have Codex create a similar benchmark: https://github.com/jcheng5/table-formats With 1000 rows and 100 samples and markdown-kv, I got these scores: - gpt-4.1-nano: 52% - gpt-4.1-mini: 72% - gpt-4.1: 93% - gpt-5: 100% I was so surprised by gpt-5 getting 100% that I ran it again with 1000 samples. It got 999 correct, and one wrong. To reproduce it yourself, clone the repo, add a .env file with O…
Did it make tool calls e.g. write code to read them?
Re: Which table format do LLMs understand best?
#115This article screams for a accuracy vs. tokens plot. Thanks though, interesting results.