Spring Boot整合Google Bard - Web接口访问Google AI聊天机器人
之前开发了一个关于Google Bard
的Java库,可以帮助我们简单的提问并获得答案。现在我把它整合到Spring Boot
应用中,通过Web API让大家可以访问。
添加依赖
把pkslow google bard
添加到Spring Boot
项目中去:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.pkslow</groupId>
<artifactId>google-bard</artifactId>
<version>0.0.3</version>
</dependency>
</dependencies>
创建GoogleBardClient
在使用它之前,我们需要创建一个对应的GoogleBardClient
Bean:
@Configuration
public class GoogleBardConfig {
@Bean
public GoogleBardClient googleBardClient(@Value("${ai.google-bard.token}") String token) {
return new GoogleBardClient(token);
}
}
BardController
把GoogleBardClient
对象注入,通过HTTP GET方法来提问。所以Controller要从GET请求中获取问题,并向Google Bard
提问:
@RestController
@RequestMapping("/google-bard")
public class BardController {
private final GoogleBardClient client;
public BardController(GoogleBardClient client) {
this.client = client;
}
@GetMapping("/ask")
public BardAnswer ask(@RequestParam("q") String question) {
Answer answer = client.ask(question);
if (answer.status() == AnswerStatus.OK) {
return new BardAnswer(answer.chosenAnswer(), answer.draftAnswers());
}
if (answer.status() == AnswerStatus.NO_ANSWER) {
return new BardAnswer("No Answer", null);
}
throw new RuntimeException("Can't access to Google Bard");
}
}
获取到答案后,我们返回一个对应的DTO对象。
配置
需要配置一个用于鉴权的Token:
server.port=8088
ai.google-bard.token=UgiXYPjpaIYuE9K_3BSqCWnT2W**********************
如何获取token
- F12
找到Cookie并复制
- Session: Go to Application → Cookies →
__Secure-1PSID
.
- Session: Go to Application → Cookies →
通过Postman测试
Question 1: How to be a good father?
Queston 2: what is pkslow.com?
Log:
代码
整合的代码在GitHub.
References:
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。