buildUserPrompt method

String buildUserPrompt(
  1. String content
)

Build user prompt for structured output (simplified without instructions)

Implementation

String buildUserPrompt(String content) {
  // Return clean user prompt without JSON instructions
  // The instructions are now in the system prompt
  return content;
}