Hugo.X

Results 3 issues of Hugo.X

Hi, I've completed the deployment on Vercel and everything works great for me, except I could only use the Github avatar and nothing else. I can use the attachment from...

到底为什么会把布尔值当作字符串的值啊?! 在示例代码里面,以下这段话根本无法进行电源状态变更,因为`pState`是一个字符串而返回值是"true"和”false“ 首先,按照代码里面的on和off是根本就没判断。 其次,按照代码逻辑,返回值是真假应该是布尔变量直接判断也不行。 也就是说,非得把布尔值当作字符串用。 什么情况啊,示例代码不按照代码规范写还是个出错不能运行的。 ``` set_state = message.data["pState"] print("change power state to : {0}".format(set_state)) if set_state == "on": pass elif set_state == "off": pass ``` 也就是说这段代码正常运行应该是这样的: ``` set_state...

Open AI just release ChatGPT API using "gpt-3.5-turbo" model. Not only because that is the actual ChatGPT, the popular one, but also it is much cheaper than "text-davinci-003".

enhancement