【Opus4.6】鉴别真假
- 内容介绍
- 文章标签
- 相关推荐
为了避免有中转浑水摸鱼,以次充好,所以寻找了一个验证方案,不能保证百分之百,但是能把有大问题的排除出去
借鉴之前的Opus4.5鉴别方案
curl --location --request POST 'https://YOU_HOST/v1/messages' \
--header 'anthropic-beta: interleaved-thinking-2025-05-14' \
--header 'anthropic-version: 2023-06-01' \
--header 'Authorization: Bearer YOU_API_KEY' \
--header 'content-type: application/json' \
--data-raw '{
"model": "claude-opus-4-6",
"max_tokens": 64000,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "2025 年 5 月接替教皇方济各的新教皇是谁?他是哪国人?不允许联网"
}
]
}
]
}'
正常情况会回复(相似即可,只要能回答上来):
2025年5月新教皇\n\n教皇方济各(Pope Francis)于2025年4月21日去世。\n\n2025年5月8日,枢机主教 罗伯特·弗朗西斯·普雷沃斯特(Robert Francis Prevost)在教皇选举秘密会议(Conclave)中当选为新教皇,取名为利奥十四世(Leo XIV)。
为了避免有中转浑水摸鱼,以次充好,所以寻找了一个验证方案,不能保证百分之百,但是能把有大问题的排除出去
借鉴之前的Opus4.5鉴别方案
curl --location --request POST 'https://YOU_HOST/v1/messages' \
--header 'anthropic-beta: interleaved-thinking-2025-05-14' \
--header 'anthropic-version: 2023-06-01' \
--header 'Authorization: Bearer YOU_API_KEY' \
--header 'content-type: application/json' \
--data-raw '{
"model": "claude-opus-4-6",
"max_tokens": 64000,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "2025 年 5 月接替教皇方济各的新教皇是谁?他是哪国人?不允许联网"
}
]
}
]
}'
正常情况会回复(相似即可,只要能回答上来):
2025年5月新教皇\n\n教皇方济各(Pope Francis)于2025年4月21日去世。\n\n2025年5月8日,枢机主教 罗伯特·弗朗西斯·普雷沃斯特(Robert Francis Prevost)在教皇选举秘密会议(Conclave)中当选为新教皇,取名为利奥十四世(Leo XIV)。

