开发了一个Java库的Google Bard API,可以自动化与AI对话了

科技资讯 投稿 8500 0 评论

开发了一个Java库的Google Bard API,可以自动化与AI对话了

开发了一个Java库的Google Bard API,可以自动化与AI对话了

Google Bard是Google提供的还在实验阶段的人工智能对话服务。这明显是对标ChatGPT来的,它可以提供更实时的答案,会基于Google强大的网页数据。

欢迎大家STAR..。

如何使用

引入依赖

<dependencies>
    <dependency>
        <groupId>com.pkslow</groupId>
        <artifactId>google-bard</artifactId>
        <version>0.0.1</version>
    </dependency>
</dependencies>

拿到验证Token

目前没有用户名密码的方式,直接有Token就行。但这个要从网页上拿。它其实就是一个Cookie,名为__Secure-1PSID

Java代码

两行代码即可:

AIClient client = new GoogleBardClient(token;
List<String> answers = client.ask("How to be a good father?";

返回的是一个列表:
如果Google Bard能够回答问题,一般会给出三个答案。第一个是推荐的答案。

for (int i = 0; i < answers.size(; i++ {
    if (i == 0 {
        System.out.println("### Recommended Answer";
        System.out.println(answers.get(i;
    } else {
        System.out.println("### Answer " + i;
        System.out.println(answers.get(i;
    }
}
Google Bard目前还是实验阶段,只在美国英国可用,所以你懂的:
NetworkUtils.setUpProxy("localhost", "7890";

这个要在程序最开始设置。

我尝试的问题如答案

How to be a good father?
答案是Markdown格式的,我获得的答案如下:

Recommended Answer

    Spend time with your child. Quality time is essential for building a strong relationship with your child. Make time for activities that you both enjoy, such as playing games, going to the park, or reading stories.
  • Be a good role model. Children learn by watching the adults in their lives. Set a good example by being honest, kind, and respectful.
  • Be supportive. Let your child know that you are there for them, no matter what. Offer them your support and encouragement, especially when they are going through tough times.
  • Be a good communicator. Talk to your child about their day, their feelings, and their hopes and dreams. Let them know that they can come to you with anything.
  • Be patient. Parenting is a journey, not a destination. There will be times when you feel frustrated or overwhelmed. Remember to be patient with yourself and your child.
  • Be loving. The most important thing a father can do is to love his child unconditionally. Let your child know that you love them every day.

Being a good father is a lifelong journey. There is no one right way to do it. Just remember to be there for your child, be a good role model, and show them love。

Answer 1

Here are some tips on how to be a good father:

    Spend time with your child. Quality time is essential for building a strong relationship with your child. Make time for activities that you both enjoy, such as playing games, going to the park, or reading stories.
  • Be a good role model. Children learn by watching the adults in their lives. Set a good example by being honest, kind, and respectful.
  • Be supportive. Let your child know that you are there for them, no matter what. Offer them your support and encouragement, especially when they are going through tough times.
  • Be a good communicator. Talk to your child about their day, their feelings, and their hopes and dreams. Let them know that they can come to you with anything.
  • Be patient. Parenting is a journey, not a destination. There will be times when

编程笔记 » 开发了一个Java库的Google Bard API,可以自动化与AI对话了

赞同 (45) or 分享 (0)
游客 发表我的评论   换个身份
取消评论

表情
(0)个小伙伴在吐槽