Skip to content

Commit cad2c7b

Browse files
committed
feat(Assistant V2): Added missing UserDefined field to MessageOutput
1 parent 20f80ac commit cad2c7b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Scripts/Services/Assistant/v2/Models/MessageOutput.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ public class MessageOutput
5252
/// </summary>
5353
[fsProperty("debug")]
5454
public MessageOutputDebug Debug { get; set; }
55+
/// <summary>
56+
/// Arbitrary variables that can be read and written to by a particular skill within the Assistant.
57+
/// </summary>
58+
[fsProperty("user_defined")]
59+
public dynamic UserDefined { get; set; }
5560
}
5661

5762
}

0 commit comments

Comments
 (0)