forked from github/copilot-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssistantMessageEvent.java
More file actions
235 lines (204 loc) · 6.01 KB
/
AssistantMessageEvent.java
File metadata and controls
235 lines (204 loc) · 6.01 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
package com.github.copilot.sdk.events;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Event representing a complete message from the assistant.
* <p>
* This event is fired when the assistant has finished generating a response.
* For streaming responses, use {@link AssistantMessageDeltaEvent} instead.
*
* <h2>Example Usage</h2>
*
* <pre>{@code
* session.on(event -> {
* if (event instanceof AssistantMessageEvent msg) {
* String content = msg.getData().getContent();
* System.out.println("Assistant: " + content);
* }
* });
* }</pre>
*
* @see AssistantMessageDeltaEvent
* @see AbstractSessionEvent
* @since 1.0.0
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public final class AssistantMessageEvent extends AbstractSessionEvent {
@JsonProperty("data")
private AssistantMessageData data;
/**
* {@inheritDoc}
*
* @return "assistant.message"
*/
@Override
public String getType() {
return "assistant.message";
}
/**
* Gets the message data.
*
* @return the message data containing content and tool requests
*/
public AssistantMessageData getData() {
return data;
}
/**
* Sets the message data.
*
* @param data
* the message data
*/
public void setData(AssistantMessageData data) {
this.data = data;
}
/**
* Contains the assistant message content and metadata.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public static class AssistantMessageData {
@JsonProperty("messageId")
private String messageId;
@JsonProperty("content")
private String content;
@JsonProperty("toolRequests")
private List<ToolRequest> toolRequests;
@JsonProperty("parentToolCallId")
private String parentToolCallId;
/**
* Gets the unique message identifier.
*
* @return the message ID
*/
public String getMessageId() {
return messageId;
}
/**
* Sets the message identifier.
*
* @param messageId
* the message ID
*/
public void setMessageId(String messageId) {
this.messageId = messageId;
}
/**
* Gets the text content of the assistant's message.
*
* @return the message content
*/
public String getContent() {
return content;
}
/**
* Sets the message content.
*
* @param content
* the message content
*/
public void setContent(String content) {
this.content = content;
}
/**
* Gets the list of tool requests made by the assistant.
*
* @return the tool requests, or {@code null} if none
*/
public List<ToolRequest> getToolRequests() {
return toolRequests;
}
/**
* Sets the tool requests.
*
* @param toolRequests
* the tool requests
*/
public void setToolRequests(List<ToolRequest> toolRequests) {
this.toolRequests = toolRequests;
}
/**
* Gets the parent tool call ID if this message is in response to a tool.
*
* @return the parent tool call ID, or {@code null}
*/
public String getParentToolCallId() {
return parentToolCallId;
}
/**
* Sets the parent tool call ID.
*
* @param parentToolCallId
* the parent tool call ID
*/
public void setParentToolCallId(String parentToolCallId) {
this.parentToolCallId = parentToolCallId;
}
/**
* Represents a request from the assistant to invoke a tool.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public static class ToolRequest {
@JsonProperty("toolCallId")
private String toolCallId;
@JsonProperty("name")
private String name;
@JsonProperty("arguments")
private Object arguments;
/**
* Gets the unique tool call identifier.
*
* @return the tool call ID
*/
public String getToolCallId() {
return toolCallId;
}
/**
* Sets the tool call identifier.
*
* @param toolCallId
* the tool call ID
*/
public void setToolCallId(String toolCallId) {
this.toolCallId = toolCallId;
}
/**
* Gets the name of the tool to invoke.
*
* @return the tool name
*/
public String getName() {
return name;
}
/**
* Sets the tool name.
*
* @param name
* the tool name
*/
public void setName(String name) {
this.name = name;
}
/**
* Gets the arguments to pass to the tool.
*
* @return the tool arguments (typically a Map or JsonNode)
*/
public Object getArguments() {
return arguments;
}
/**
* Sets the tool arguments.
*
* @param arguments
* the tool arguments
*/
public void setArguments(Object arguments) {
this.arguments = arguments;
}
}
}
}