You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seperation of system instructions and prompt, playback safety and fix deadlock while marking broken elements of broken XML
- Prompt and system instructions are seperated and now sent through GenerativeAI.SystemInstruction.
- Playback safety is ensured by preventing playing music if a note is already playing.
- Deadlock issue in marking broken elements in AI generated NBPML error window.
/// Parses the specified XML string, displays it in a RichTextBox, and highlights the first character where a
118
+
/// Parses the specified XML string, displays it in a RichTextBox, and highlights the entire tag where a
119
119
/// parsing error occurs.
120
120
/// </summary>
121
121
/// <remarks>This method visually distinguishes the first XML parsing error by highlighting the
122
-
/// corresponding character in the RichTextBox. Only the first error encountered is highlighted; subsequent
122
+
/// entire tag containing the error in the RichTextBox. Only the first error encountered is highlighted; subsequent
123
123
/// errors are not marked. The method does not modify the input string.</remarks>
124
-
/// <param name="brokenXML">The XML string to display and analyze for errors. If the string contains invalid XML, the first problematic
124
+
/// <param name="brokenXML">The XML string to display and analyze for errors. If the string contains invalid XML, the entire tag with the first problematic
0 commit comments