|
|
|
|
|
by coddle-hark
644 days 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 }
]
}
|
|