-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSideBySideWindow.xaml.cs
115 lines (98 loc) · 3.57 KB
/
SideBySideWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace SQLMultiAgent
{
/// <summary>
/// Interaction logic for SideBySideWindow.xaml
/// </summary>
public partial class SideBySideWindow : Window
{
private SQLMultiAgentRunner rawRunner;
private SQLMultiAgentRunner agentRunner;
public SideBySideWindow()
{
InitializeComponent();
rawRunner = new SQLMultiAgentRunner();
agentRunner = new SQLMultiAgentRunner();
rawRunner.AgentResponded += SQLMultiAgent_RawResponded;
agentRunner.AgentResponded += SQLMultiAgent_AgentResponded;
}
private void SQLMultiAgent_RawResponded(object? sender, EventArgs e)
{
if (e is AgentRespondedEventArgs args)
{
Color color = Colors.Black;
if (args.AgentName.Contains("Query"))
{
color = Colors.DarkGray;
}
else if (args.AgentName.Contains("Assistant"))
{
color = Colors.DarkOliveGreen;
}
UpdateResponseBox(RawResponse,args.AgentName, args.Response, color);
}
}
private void SQLMultiAgent_AgentResponded(object? sender, EventArgs e)
{
if (e is AgentRespondedEventArgs args)
{
Color color = Colors.Black;
if (args.AgentName.Contains("Query"))
{
color = Colors.DarkGray;
}
else if (args.AgentName.Contains("Assistant"))
{
color = Colors.DarkOliveGreen;
}
UpdateResponseBox(AgentResponse, args.AgentName, args.Response, color);
}
}
public void ClearResponseBoxes()
{
//Clear out the response boxes
RawResponse.Document.Blocks.Clear();
AgentResponse.Document.Blocks.Clear();
}
public void UpdateResponseBox(RichTextBox box, string sender, string response, Color color)
{
//Update mainWindow.ResponseBox to add the sender in bold, a colon, a space, and the response in normal text
Paragraph paragraph = new Paragraph();
Bold bold = new Bold(new Run(sender + ": "));
bold.Foreground = new SolidColorBrush(color);
paragraph.Inlines.Add(bold);
Run run = new Run(response);
paragraph.Inlines.Add(run);
box.Document.Blocks.Add(paragraph);
Console.WriteLine(sender + ": " + response);
}
private async void AskButton_Click(object sender, RoutedEventArgs e)
{
await AskQuestion();
}
public async Task AskQuestion()
{
//Clear out the response box
ClearResponseBoxes();
rawRunner.question = QueryBox.Text;
agentRunner.question = QueryBox.Text;
// Create tasks for both methods
Task rawTask = rawRunner.AskSingletonAgent();
Task agentTask = agentRunner.AskSingletonAgentWithFunctions();
// Wait for both tasks to complete
await Task.WhenAll(rawTask, agentTask);
}
}
}