aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/Contracts.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/Contracts.cs')
-rw-r--r--Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/Contracts.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/Contracts.cs b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/Contracts.cs
index d968d0738..c681e2cee 100644
--- a/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/Contracts.cs
+++ b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Models/Contracts.cs
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Text.Json.Serialization;
-namespace ChatADX.Web.Models
+namespace Tango.Portal.Chat.Web.Models
{
public sealed class ProposeKqlResult
{
@@ -24,6 +24,9 @@ namespace ChatADX.Web.Models
[JsonPropertyName("assistant")]
public string Assistant { get; set; } = string.Empty;
+
+ [JsonPropertyName("conversation")]
+ public string ConversationAnswer { get; set; } = String.Empty;
}
public sealed class ChatMessage
@@ -31,6 +34,7 @@ namespace ChatADX.Web.Models
// "user" | "assistant"
public string Role { get; set; } = "user";
public string Content { get; set; } = string.Empty;
+ public String UsedKql { get; set; } = String.Empty;
}
public sealed class ChatRequest