Compare commits

...

3 Commits

Author SHA1 Message Date
RockChinQ
abbd15d5cc chore: release v3.2.0.1 2024-05-17 09:48:20 +08:00
RockChinQ
aadfa14d59 fix: claude 请求失败 2024-05-17 09:46:06 +08:00
Junyan Qin
4cd10bbe25 Update README.md 2024-05-16 22:17:46 +08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -41,5 +41,5 @@
<a href="https://github.com/RockChinQ/qcg-tester">测试工程源码</a>
<a href="https://github.com/the-lazy-me/QChatGPT-Wiki">官方文档储存库</a>
<img alt="回复效果(带有联网插件)" src="https://qchatgpt.rockchin.top/assets/image/QChatGPT-1211.png" width="500px"/>
<img alt="回复效果(带有联网插件)" src="https://qchatgpt.rockchin.top/assets/image/QChatGPT-0516.png" width="500px"/>
</div>

View File

@@ -69,7 +69,7 @@ class AnthropicMessages(api.LLMAPIRequester):
elif isinstance(m.content, list):
# 删除m.content中的type!=text的元素
m.content = [
c for c in m.content if c.get("type") == "text"
c for c in m.content if c.type == "text"
]
if len(m.content) > 0:

View File

@@ -1 +1 @@
semantic_version = "v3.2.0"
semantic_version = "v3.2.0.1"