Python基于Google Bard实现交互式聊天机器人
作者:南瓜慢说 发布时间:2022-12-14 22:05:20
标签:Python,Google,Bard,交互聊天,机器人
用Python基于Google Bard做一个交互式的聊天机器人
之前已经通过浏览器试过了 Google Bard
,更多细节请看: Try out Google Bard, Will Google Bard beat the ChatGPT?.
现在我们想实现自动化,所以我用Python
做一个交互式的聊天机器人。
获取Session ID
通过浏览器先拿到SessionID,它是一个cookie
,名为 __Secure-1PSID
,然后复制一下对应的值:
Python代码
先做一些初始化,主要是一些请求头和请求参数:
def __init__(self, session_id):
headers = {
"Host": "bard.google.com",
"X-Same-Domain": "1",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36",
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8",
"Origin": "https://bard.google.com",
"Referer": "https://bard.google.com/",
}
self._reqid = int("".join(random.choices(string.digits, k=4)))
self.conversation_id = ""
self.response_id = ""
self.choice_id = ""
self.session = requests.Session()
self.session.headers = headers
self.session.cookies.set("__Secure-1PSID", session_id)
self.SNlM0e = self.__get_snlm0e()
发送请求的时候,把之前准备的参数和数据发一个POST请求到 bard.google.com
:
resp = self.session.post(
"https://bard.google.com/_/BardChatUi/data/assistant.lamda.BardFrontendService/StreamGenerate",
params=params,
data=data,
timeout=120,
)
返回了之后,需要解析消息体,获取我们所需要的信息:
chat_data = json.loads(resp.content.splitlines()[3])[0][2]
if not chat_data:
return {"content": f"Google Bard encountered an error: {resp.content}."}
json_chat_data = json.loads(chat_data)
results = {
"content": json_chat_data[0][0],
"conversation_id": json_chat_data[1][0],
"response_id": json_chat_data[1][1],
"factualityQueries": json_chat_data[3],
"textQuery": json_chat_data[2][0] if json_chat_data[2] is not None else "",
"choices": [{"id": i[0], "content": i[1]} for i in json_chat_data[4]],
}
运行与尝试
python Bard.py --session 'UgiXYPjpaIYuE9K_3BSxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
它一个交互式的终端,我随便问了几个问题:
ChatGPT - A command-line interface to Google's Bard (https://bard.google.com/)
You:
What is terrible-two?
Google Bard:
Terrible-two is a term used to describe the behavior of a child around the age of 2. It is a normal developmental phase that all children go through. During this time, children
are learning to assert their independence and explore the world around them. This can lead to tantrums, defiance, and other challenging behavior.
There are a few things that parents can do to help manage the terrible twos:
• Be patient and understanding. Remember that this is a normal phase and that your child is not trying to be difficult.
• Set clear boundaries and expectations. Children need to know what is expected of them.
• Be consistent with your discipline. If you are not consistent, your child will not learn what is right and wrong.
• Offer positive reinforcement. Praise your child for good behavior and help them feel good about themselves.
• Talk to your child's doctor if you are concerned about their behavior. Your doctor can offer advice and support.
The terrible twos can be a challenging time for parents, but it is important to remember that this is a normal phase and that your child will eventually grow out of it.
You:
how far is the moon?
Google Bard:
The Moon is an average of 238,855 miles (384,400 km) away from Earth. This distance varies slightly because the Moon's orbit is not a perfect circle. The Moon is closest to Earth
at perigee, which is when it is about 225,623 miles (363,104 km) away. It is farthest from Earth at apogee, which is when it is about 252,088 miles (405,696 km) away.
You:
how far is the sun?
Google Bard:
The Sun is about 93 million miles (150 million kilometers) away from Earth. That's about 1 Astronomical Unit (AU).
The Sun is the center of our solar system. All of the planets and other objects in our solar system orbit around the Sun. The Sun is a very large star. It is about 109 times the
diameter of Earth and about 330,000 times more massive than Earth. The Sun is made up of mostly hydrogen and helium. It is so hot that the hydrogen and helium are constantly
fusing together to create heavier elements. This process is called nuclear fusion. Nuclear fusion releases a lot of energy, which is what powers the Sun.
You:
how to cure a flu?
Google Bard:
There is no cure for the flu, but there are treatments that can help relieve symptoms and prevent complications. The most effective way to prevent the flu is to get a flu vaccine
every year.
If you get the flu, there are a few things you can do to feel better:
• Rest. Get plenty of sleep and avoid strenuous activity.
• Drink plenty of fluids. Water, juice, and soup are all good choices.
• Take over-the-counter pain relievers like acetaminophen or ibuprofen.
• Use a humidifier. The moisture can help soothe your throat and make it easier to breathe.
• See a doctor if you have severe symptoms or are at high risk of complications.
Here are some tips to help you prevent the flu:
• Get a flu vaccine every year. The flu vaccine is the best way to prevent the flu.
• Wash your hands often with soap and water. This helps to prevent the spread of germs.
• Avoid close contact with people who are sick. If you must be around someone who is sick, wear a mask.
• Clean and disinfect surfaces that may be contaminated with germs.
• Stay home from work or school if you are sick. This will help to prevent the spread of the flu.
• Eat a healthy diet and exercise regularly. A healthy immune system is better able to fight off infection.
You:
Exiting...
代码
相关代码请查看: GitHUb LarryDpk/pkslow-samples
References:Bard
来源:https://juejin.cn/post/7213733567620825125
0
投稿
猜你喜欢
- 目录Uiautomator2的安装和使用具体实现如何打开支付宝并进入蚂蚁森林?收能量如何停止完整代码结语@[toc] 虽然我支付宝加了好多好
- 许可和分发权限Access 2003 Developer Extensions随附的许可协议简化了解决方案或代码段的分发过程。这些协议包括免
- yolov5的head修改为decouple headyolox的decoupled head结构本来想将yolov5的head修改为dec
- 代码如下:---涂聚文 Geovin Du DECLARE @myid uniqueidentifier SET @myid =
- yolov5的代码模型构建是通过.yaml文件实现的,初次看上去会一头雾水,这里记录一下,也方便自己后面用到的时候查看。以models/yo
- 实现对下一个单词的预测RNN 原理自己找,这里只给出简单例子的实现代码import tensorflow as tfimport numpy
- 本文实例讲述了GO语言筛选法求100以内的素数。分享给大家供大家参考。具体实现方法如下:思路:找出一个非素数就把它挖掉,最后剩下就是素数。下
- 最近开发一套接口,写个Python脚本,使用requests.session模拟一下登录.因为每次需要获取用户信息,登录需要带着sessio
- 绘制八个子图import matplotlib.pyplot as pltfig = plt.figure()shape=['.
- 当使用pytorch写网络结构的时候,本人发现在卷积层与第一个全连接层的全连接层的input_features不知道该写多少?一开始本人的做
- 字符串中字符大小写的变换1. str.lower() //小写>>> 'SkatE'
- 不过,如果您需要查找文档中的一个特定的元素,最有效的方法是 getElementById()。 不过要注意的是使用getElementByI
- 本文实例讲述了Symfony2实现从数据库获取数据的方法。分享给大家供大家参考,具体如下:假设有一张表:test, 字段:name,colo
- 一、简介 多线程编程技术可以实现代码并行性,优化处理能力,同时功能的
- tkinter介绍tkinter是python自带的GUI库,是对图形库TK的封装tkinter是一个跨平台的GUI库,开发的程序可以在wi
- 一、复制的原理MySQL 复制基于主服务器在二进制日志中跟踪所有对数据库的更改(更新、删除等等)。每个从服务器从主服务器接收主服务器已经记录
- Go 搭建一个简单 WebSocket 服务端代码例子 test.go, 如下:package mainimport ( "fmt
- 用django开发,经常要处理用户上传的文件, 比如user模型里面如果又个人头像的字段 ImageField等等,而django在Fiel
- 本文实例为大家分享了JavaScript实现年历效果的具体代码,供大家参考,具体内容如下<!DOCTYPE html><h
- 4. 生成器(generator)4.1. 生成器简介首先请确信,生成器就是一种迭代器。生成器拥有next方法并且行为与迭代器完全相同,这意