mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
【todo】百度文言一心,解决 todo,删除 doOnComplete、增加 retryTemplate
This commit is contained in:
parent
e0d8ac74a4
commit
3a10fedddb
@ -85,22 +85,20 @@ public class YiYanChatClient implements ChatClient, StreamingChatClient {
|
||||
@Override
|
||||
public Flux<ChatResponse> stream(Prompt prompt) {
|
||||
YiYanChatCompletionRequest request = this.createRequest(prompt, true);
|
||||
// TODO @fan:return this.retryTemplate.execute(ctx -> {
|
||||
// 调用 callWithFunctionSupport 发送请求
|
||||
Flux<YiYanChatCompletionResponse> response = this.yiYanApi.chatCompletionStream(request);
|
||||
// TODO @fan:下面的 doOnComplete 是不是可以删除哈?
|
||||
response.doOnComplete(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
String a = ";";
|
||||
}
|
||||
});
|
||||
return response.map(chunk -> {
|
||||
// TODO @fan:ChatResponseMetadata chatResponseMetadata
|
||||
return new ChatResponse(List.of(new Generation(chunk.getResult())));
|
||||
// TODO done @fan:return this.retryTemplate.execute(ctx -> {
|
||||
return retryTemplate.execute(ctx -> {
|
||||
// 调用 callWithFunctionSupport 发送请求
|
||||
Flux<YiYanChatCompletionResponse> response = this.yiYanApi.chatCompletionStream(request);
|
||||
return response.map(chunk -> {
|
||||
// System.err.println("---".concat(chunk.getResult()));
|
||||
// TODO @fan:ChatResponseMetadata chatResponseMetadata
|
||||
return new ChatResponse(List.of(new Generation(chunk.getResult())));
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
private YiYanChatCompletionRequest createRequest(Prompt prompt, boolean stream) {
|
||||
// 参考 https://cloud.baidu.com/doc/WENXINWORKSHOP/s/clntwmv7t 文档,system 是独立字段
|
||||
// 1.1 获取 user 和 assistant
|
||||
|
Loading…
Reference in New Issue
Block a user