-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathApplicationCalls.java
304 lines (259 loc) · 11.6 KB
/
ApplicationCalls.java
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
// Copyright (c) Alibaba, Inc. and its affiliates.
import com.alibaba.dashscope.app.*;
import com.alibaba.dashscope.exception.ApiException;
import com.alibaba.dashscope.exception.InputRequiredException;
import com.alibaba.dashscope.exception.NoApiKeyException;
import com.alibaba.dashscope.utils.JsonUtils;
import com.google.gson.JsonObject;
import io.reactivex.Flowable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/**
* Title App Completion call samples.<br>
* Description App Completion call samples.<br>
* Created at 2024-02-26 09:50
*
* @since jdk8
*/
public class ApplicationCalls {
private static final String WORKSPACE;
private static final String APP_ID;
static {
WORKSPACE = System.getenv("WORKSPACE_ID");
APP_ID = System.getenv("APP_ID");
}
/**
* Rag application call sample
*
* @throws NoApiKeyException Can not find api key
* @throws ApiException The request failed, possibly due to a network or data error.
* @throws InputRequiredException Missing inputs.
*/
public static void ragCall()
throws ApiException, NoApiKeyException, InputRequiredException {
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("API接口说明中, TopP参数改如何传递?")
.topP(0.2)
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
System.out.printf("requestId: %s, text: %s, finishReason: %s\n",
result.getRequestId(), result.getOutput().getText(), result.getOutput().getFinishReason());
if (result.getUsage() != null && result.getUsage().getModels() != null) {
for (ApplicationUsage.ModelUsage usage : result.getUsage().getModels()) {
System.out.printf("modelId: %s, inputTokens: %d, outputTokens: %d\n",
usage.getModelId(), usage.getInputTokens(), usage.getOutputTokens());
}
}
}
/**
* Rag application call with tags sample
*
* @throws NoApiKeyException Can not find api key
* @throws ApiException The request failed, possibly due to a network or data error.
* @throws InputRequiredException Missing inputs.
*/
public static void ragCallWithTags()
throws ApiException, NoApiKeyException, InputRequiredException {
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("API接口说明中, TopP参数改如何传递?")
.topP(0.2)
// 开启检索过程信息返回结果
.hasThoughts(true)
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
System.out.printf("requestId: %s, text: %s, finishReason: %s\n",
result.getRequestId(), result.getOutput().getText(), result.getOutput().getFinishReason());
List<ApplicationOutput.Thought> thoughts = result.getOutput().getThoughts();
if (thoughts != null && !thoughts.isEmpty()) {
for (ApplicationOutput.Thought thought : thoughts) {
System.out.printf("thought: %s\n", thought);
}
}
}
/**
* Plugin and flow application call sample
*
* @throws NoApiKeyException Can not find api key
* @throws ApiException The request failed, possibly due to a network or data error.
* @throws InputRequiredException Missing inputs.
*/
public static void flowCall()
throws ApiException, NoApiKeyException, InputRequiredException {
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("杭州的天气怎么样")
.topP(0.2)
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
System.out.printf("requestId: %s, text: %s, finishReason: %s\n",
result.getRequestId(), result.getOutput().getText(), result.getOutput().getFinishReason());
}
/**
* Plugin and flow application call with biz params sample
*
* @throws NoApiKeyException Can not find api key
* @throws ApiException The request failed, possibly due to a network or data error.
* @throws InputRequiredException Missing inputs.
*/
public static void flowCallWithParam()
throws ApiException, NoApiKeyException, InputRequiredException {
//查询今天的天气
String bizParams = "{\"date\": \"今天\"}";
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("杭州的天气怎么样")
// 传递业务参数
.bizParams(JsonUtils.parse(bizParams))
// 开启插件调用过程返回结果
.hasThoughts(true)
.topP(0.2)
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
System.out.printf("requestId: %s, text: %s, finishReason: %s\n",
result.getRequestId(), result.getOutput().getText(), result.getOutput().getFinishReason());
List<ApplicationOutput.Thought> thoughts = result.getOutput().getThoughts();
if (thoughts != null && !thoughts.isEmpty()) {
for (ApplicationOutput.Thought thought : thoughts) {
System.out.printf("thought: %s\n", thought);
}
}
}
/**
* Call with multiple rounds session sample
*
* @throws NoApiKeyException Can not find api key
* @throws ApiException The request failed, possibly due to a network or data error.
* @throws InputRequiredException Missing inputs.
*/
public static void callWithSession()
throws ApiException, NoApiKeyException, InputRequiredException {
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("我想去新疆")
.topP(0.2)
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
param.setSessionId(result.getOutput().getSessionId());
param.setPrompt("那边有什么旅游景点或者美食?");
result = application.call(param);
System.out.printf("requestId: %s, text: %s, finishReason: %s\n",
result.getRequestId(), result.getOutput().getText(), result.getOutput().getFinishReason());
}
/**
* Call with stream response(Http SSE) sample
*
* @throws NoApiKeyException Can not find api key
* @throws InputRequiredException Missing inputs.
*/
public static void streamCall() throws NoApiKeyException, InputRequiredException {
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("如何做土豆炖猪脚?")
.topP(0.8)
.incrementalOutput(true)
.build();
Application application = new Application();
Flowable<ApplicationResult> result = application.streamCall(param);
result.blockingForEach(data -> System.out.printf(data.getOutput().getText()));
System.out.print("\n");
}
/**
* Call with workspace sample
*
* @throws NoApiKeyException Can not find api key
* @throws InputRequiredException Missing inputs.
*/
public static void callWithWorkspace() throws NoApiKeyException, InputRequiredException {
ApplicationParam param = ApplicationParam.builder()
.workspace(WORKSPACE)
.appId(APP_ID)
.prompt("如何做土豆炖猪脚?")
.topP(0.8)
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
System.out.printf("requestId: %s, text: %s, finishReason: %s\n",
result.getRequestId(), result.getOutput().getText(), result.getOutput().getFinishReason());
}
/**
* Application call with long term memory sample
*
* @throws NoApiKeyException Can not find api key
* @throws ApiException The request failed, possibly due to a network or data error.
* @throws InputRequiredException Missing inputs.
*/
public static void callWithMemory()
throws ApiException, NoApiKeyException, InputRequiredException {
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("我想去新疆")
.memoryId("mem_123")
.topP(0.2)
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
System.out.printf("requestId: %s, text: %s\n", result.getRequestId(), result.getOutput().getText());
}
public static void callWithAssistantServing() throws NoApiKeyException, InputRequiredException {
JsonObject metadataFilter = new JsonObject();
metadataFilter.addProperty("key", "meta123");
JsonObject structureFilter = new JsonObject();
structureFilter.addProperty("key", "structured123");
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("我想去新疆")
.images(Collections.singletonList("img_123"))
.ragOptions(RagOptions.builder()
.tags(Collections.singletonList("tag_123"))
.pipelineIds(Collections.singletonList("pipeline_123"))
.fileIds(Collections.singletonList("files_123"))
.metadataFilter(metadataFilter)
.structuredFilter(structureFilter)
.build())
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
System.out.printf("requestId: %s, text: %s\n", result.getRequestId(), result.getOutput().getText());
}
public static void ragCallWithDocReference()
throws ApiException, NoApiKeyException, InputRequiredException {
ApplicationParam param = ApplicationParam.builder()
.appId(APP_ID)
.prompt("ChatDev的亮点是什么?")
.topP(0.2)
.build();
Application application = new Application();
ApplicationResult result = application.call(param);
System.out.printf("requestId: %s, text: %s, finishReason: %s\n",
result.getRequestId(), result.getOutput().getText(), result.getOutput().getFinishReason());
if (result.getOutput().getDocReferences() != null && !result.getOutput().getDocReferences().isEmpty()) {
for (ApplicationOutput.DocReference docReference : result.getOutput().getDocReferences()) {
System.out.println(docReference.toString());
}
}
}
public static void main(String[] args) {
try {
// ragCall();
// ragCallWithTags();
// flowCall();
// callWithSession();
// streamCall();
// callWithWorkspace();
// callWithMemory();
// callWithAssistantServing();
ragCallWithDocReference();
} catch (ApiException | NoApiKeyException | InputRequiredException e) {
System.out.printf("Exception: %s", e.getMessage());
}
System.exit(0);
}
}