Kapa.AI Code Response Formatting Feedback

What high-level problem are you trying to solve?
Saving time copying/pasting/editing complex formulas in Kappa AI plain-text Output

When using the Kapa AI interface in the docs, it often outputs an entire example in plaint text replicating the visual appearance of an XLSForm. However, if there are many columns, complex formulas, etc., the copy icon on the upper right of that box copies the entire sheet. Depending on the complexity of the output, you can just highlight your area of interest and paste, but it still requires some fine tuning to remove the extra spaces and still the formula isn't organized that well.

Here is an example of a more complicated formula from another AI that was output in a format that is very easy to read and I've found this super helpful when troubleshooting.

if(string-length(${barcode1}) = 0, 
  '', 
  if(${calc_barcode1_type} = 'URL',
    ${calc_ID_from_URL},
    if(${calc_barcode1_type} = 'temp_ID',
     pulldata('Import', 'Tree_ID', 'Temp_ID', substr(${barcode1}, 1, string-length(${barcode1}))),
    if(${calc_barcode1_type} = 'prop',
      concat(substring-after(${year_prop}, '20'), ${barcode1}),
      if(${calc_barcode1_type} = 'perm_ID',
        substr(${barcode1}, 1, string-length(${barcode1})),
        if(${calc_barcode1_type} = 'hole',
          pulldata('Import', 'Tree_ID', 'Loc', substr(${barcode1}, 1, string-length(${barcode1}))),
          if(${calc_barcode1_type} = 'import',
            ${barcode1},
            substr(${barcode1}, 1, string-length(${barcode1}))
          )
		 )
        )
      )
    )
  )
)

Other AIs tend to give multiple code snipped boxes in a single response which helps give both a wider context and the ability to copy and paste the formula/portion of interest. Is there a way to get Kapa.ai to do this? On a SEMI-related note, is there any interest in keeping a chat log history of previous conversations so we can reference them and go back and keep chatting within that context?

Any ideas on how ODK could help you solve it?
Just giving feedback...no ideas on how I can actually help. :man_shrugging:

Upload any helpful links, sketches, and videos.
Original Screenshot

Comparing Pastes in Notepad Plain Text

Pasting into Google Sheets