Remix.run Logo
0x457 9 hours ago

I have this toy agent I'm writing, I always laugh that I, human, write a code that generates human-readable markdown, that I feed to llm where I ask it to produce a json, so I can parse (by code I, or it wrote) and output in a consistent human-readable form.

I'm thinking about let it output freeform and then use another model to use to force that into structured.

astrange 8 hours ago | parent [-]

IIRC yaml is easier for models than json because you don't need as much recursive syntax.

t1amat 8 hours ago | parent [-]

I doubt this is true anymore, if ever. Both require string escaping, which is the real hurdle. And they are heavily trained on JSON for tool calling.