Patrick on Nostr: 看見有嘟友在討論Mistral AI,於是測試了一下幾個這幾天問過其他 ...
看見有嘟友在討論Mistral AI,於是測試了一下幾個這幾天問過其他 AI 的問題給 Mistral AI:
1. 之前的一個 Minute Cryptic Puzzle:
問題: Find a word meaning fancy with 6-letter word with first letter being d and fifth letter being r
正確答案: desire
這個之前試過 Claude 和 DeepSeek, DeepSeek 一次回答出,Claude 需要兩次,Mistral 給我回答 dandy
2. 修改一個 Bash Script:
問題: Update the following script attached such that to also include master bridge
Script 內容:
```
local NAME=$1
local PID=$(docker inspect "$NAME" --format "{{.State.Pid}}")
while read -r iface id; do
[[ "$iface" == lo ]] && continue
veth=$(ip -br addr | sed -nre "s/(veth.*)@if$id.*/\1/p")
echo -e "$NAME\t$iface\t$veth"
done < <(</proc/$PID/net/igmp awk '/^[0-9]+/{print $2 " " $1;}')
```
這個問題之前我在 DeepSeek 和 Claude 問過, 兩者都能正確知道我指的 Master Bridge 是什麼,但DeepSeek 魔改了我的Code 導致新的 Code是沒問題,但舊的 Code 部分完全沒法運行
Mistral 似乎完全沒有理解 Context,導致它嘗試創建一個新的 Master Bridge
先測這麼多,等下看看幾個其他的
1. 之前的一個 Minute Cryptic Puzzle:
問題: Find a word meaning fancy with 6-letter word with first letter being d and fifth letter being r
正確答案: desire
這個之前試過 Claude 和 DeepSeek, DeepSeek 一次回答出,Claude 需要兩次,Mistral 給我回答 dandy

2. 修改一個 Bash Script:
問題: Update the following script attached such that to also include master bridge
Script 內容:
```
local NAME=$1
local PID=$(docker inspect "$NAME" --format "{{.State.Pid}}")
while read -r iface id; do
[[ "$iface" == lo ]] && continue
veth=$(ip -br addr | sed -nre "s/(veth.*)@if$id.*/\1/p")
echo -e "$NAME\t$iface\t$veth"
done < <(</proc/$PID/net/igmp awk '/^[0-9]+/{print $2 " " $1;}')
```
這個問題之前我在 DeepSeek 和 Claude 問過, 兩者都能正確知道我指的 Master Bridge 是什麼,但DeepSeek 魔改了我的Code 導致新的 Code是沒問題,但舊的 Code 部分完全沒法運行
Mistral 似乎完全沒有理解 Context,導致它嘗試創建一個新的 Master Bridge

先測這麼多,等下看看幾個其他的

