File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
BotSharp.Abstraction/Models
BotSharp.OpenAPI/Controllers Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ public class MessageConfig
36
36
/// </summary>
37
37
public List < MessageState > States { get ; set ; } = new ( ) ;
38
38
39
+ /// <summary>
40
+ /// Conversation tags
41
+ /// </summary>
42
+ public List < string > Tags { get ; set ; } = new ( ) ;
43
+
39
44
/// <summary>
40
45
/// Agent task id
41
46
/// </summary>
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ public async Task<ConversationViewModel> NewConversation([FromRoute] string agen
35
35
{
36
36
AgentId = agentId ,
37
37
Channel = channel == default ? ConversationChannel . OpenAPI : channel . Value ,
38
+ Tags = config . Tags ?? new ( ) ,
38
39
TaskId = config . TaskId
39
40
} ;
40
41
conv = await service . NewConversation ( conv ) ;
You can’t perform that action at this time.
0 commit comments