query property

String query
final

String interpolated query with mix of inputs and outputs.

Examples:

final userInstruction = StringInput();
query = "$userInstruction";
// or
final codeAttachment = CodeInput();
query = "Tests similar to $codeAttachment";

Implementation

final String query;