OpenAI官方发布了GPT 4o mini,在快速使用后,这里介绍下它的基本情况。

定位

GPT 4o mini的推出是为了替代GPT 3.5,因为其比3.5便宜60%,但是又更为聪明。因此当我们在使用GPT3.5的场景都可以直接切换到GPT 4o mini。

阅读全文 »

调用AI服务,经常需要处理流返回结果,当出现异常时也是需要流处理的,这点与非流情况下的异常处理有所不同。

举个🌰

这里以axios为例。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
axios.post('http://api.com/v1/chat/completions', data, {
headers: {
Authorization: `Bearer xxxx`,
'Content-Type': 'application/json',
},
responseType: 'stream',
}).then(res => res.data)
.catch(async (e) => {
let error;
if (e.isAxiosError) {
let streamString = '';
await new Promise(resolve => {
e.response.data
.on('data', (utf8Chunk) => {
streamString += utf8Chunk;
})
.on('end', () => {
error = JSON.parse(streamString);
resolve();
});
})
} else {
error = e;
}
throw error;
});

可以看到stream情况下对于异常也要流方式处理,因为流处理是事件监听机制, 因此这里promise化处理了下,避免error值获取不正确。

阅读全文 »

今年喜欢上玩多邻国,虽然谈不上提高了多少,但巩固了下基础词汇,训练了下听力挺好的,并且也并没有花费多少时间,平均1天也就十几分钟到几分钟。

这里介绍下我是如何使用多邻国的。

平台

多邻国是跨平台的,Android,iOS,Web网页均支持,无Mac版。

我个人主要是用iOS版,其次是Web版。

免费/付费?

阅读全文 »

最近调研Google IAP,玩了下Google云机器登录,这里Mark下。

注册

  1. GMail

  2. 绑定支付,如果不绑定支付的话,无法购买机器。

    1
    初次赠送的赠金有有效期,过期后,金额还显示,但实际支付是不会抵扣的。

    实际测试Visa没问题

创建机器

以虚拟机实例为例,机器按秒计费,但注意单位是刀的话,还是挺贵的,临时使用的话,注意及时销毁。

阅读全文 »

安装php7.3

1
2
3
4
5
6
7
8
sudo yum install epel-release -y
sudo yum install https://rpms.remirepo.net/enterprise/remi-release-7.rpm -y
sudo yum install yum-utils -y
sudo yum-config-manager --enable remi-php73
sudo yum install php php-cli php-fpm php-mysqlnd php-json php-opcache php-xml php-mbstring php-tokenizer php-curl php-zip php-gd -y

# 检查版本
php -v

MySQL8

1
2
3
4
5
6
7
8
9
10
11
yum localinstall -y https://dev.mysql.com/get/mysql80-community-release-el7-2.noarch.rpm
yum install -y mysql-community-server

rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2023


# 获取临时密码
grep 'temporary password' /var/log/mysqld.log

# 初始化DB配置

阅读全文 »
0%