8 ms·
Anecdotally, the same seems to apply to the output format as well. I’ve seen much better performance when instructing the model to output something like this:
by coddle-hark 2y ago
Anecdotally, the same seems to apply to the output format as well. I’ve seen much better performance when instructing the model to output something like this:
name=john,age=23
name=anna,age=26
Rather than this:
{
matches: [
{ name: "john", age: 23 },
{ name: "anna", age: 26 }
]
}
- audessuscest 2y agomarkdown works better than json too