微信扫码
添加专属顾问
在日常使用大模型的时候你是否遇到过以下问题:
需要自己字斟句酌提示词(Prompt),进行CoT
需要自己为大模型分解任务
需要在多种大模型,多种工具(绘图模型,集成开发环境IDE,搜索引擎….)之间辗转才能达到最终目标......
这些都是普遍存在,靠目前的单一模型无法解决的问题。把时间推回到250万年前,旧石器时代见证了人类从简单工具的使用者到复杂技术创造者的转变。我们的祖先南方古猿、直立人等,逐步发展出更高级的工具,如手斧和刮刀,以适应狩猎和生活的需求。大约4万年前,现代人类——智人——的出现标志着技术和文化的飞跃,工具进一步精致化如骨针、鱼钩,艺术创作如洞穴壁画和雕塑也随之兴起。这一时期,火的利用、语言和社会结构的形成,为人类文明的后续发展奠定了坚实的基础。
我们无法保证大模型的“进化”和人类的进化史必定存在强相关性,不过,若以历史作为教科书,解决问题的答案或许已在书中沉淀万年。我们相信,大模型调用工具的能力(或称作智能体能力)是解决前文问题的一种有效方法。
我们在 bigmodel.cn[1]对最新的GLM-4-AllTools API进行了评测。
GLM-4-AllTools: Chat API,集成了调用工具的能力,能够自主使用多种工具组合和多轮对话来达成用户任务。和传统LLM API相比,GLM-4-AllTools API集成了五大核心功能,包括智能编程助手,安全代码沙盒,实时联网搜索,绘图设计工具,函数调用能力。其中函数调用功能支持用户自定义函数,为进阶开发者提供了便利。当模型识别到解决用户输入的请求需要搜索引擎时,它会自动激活内置的联网搜索功能,以提供实时且全面的搜索结果。搜索完成后,内置的网页浏览工具能够打开并细致查看网页内容,从而进行更深入的分析。此外,借助卓越的自我规划能力和内置的代码沙盒、绘图设计等工具,API能够仅通过一次互动就高效地处理复杂的任务。
下面请跟随我们的脚步,我们将一步一步组合这些工具,测试GLM-4-AllTools的真正实力:
Tools: Web Search
代码:
from zhipuai import ZhipuAI
client = ZhipuAI(api_key="Zhipu API Key") # 请填写您自己的APIKey
response = client.chat.completions.create(
model="glm-4-alltools", # 填写需要调用的模型名称
stream=True,
messages=[
{
"role": "user",
"content":[
{
"type":"text",
"text":"帮我查询本届欧洲杯淘汰赛对阵情况。"
}
]
}
],
tools=[
{
"type": "web_browser" #联网搜索
},
]
)
for trunk in response:
if trunk.choices[0].delta.content is not None:
print(trunk.choices[0].delta.content, end="")
回复:
2024年欧洲杯淘汰赛的对阵情况如下:
- 6月30日:
- 瑞士 vs 意大利(00:00)
- 德国 vs 丹麦(03:00)
- 7月1日:
- 英格兰 vs 斯洛伐克(00:00)
- 西班牙 vs 格鲁吉亚(03:00)
- 7月2日:
- 法国 vs 比利时(00:00)
- 葡萄牙 vs 斯洛文尼亚(03:00)
- 7月3日:
- 荷兰 vs 罗马尼亚(00:00)
- 奥地利 vs 土耳其(03:00)
请注意,以上时间均为北京时间。
Tools: Web Search, Code Interpreter, Sandbox
from zhipuai import ZhipuAI
client = ZhipuAI(api_key="") # 请填写您自己的APIKey
response = client.chat.completions.create(
model="glm-4-alltools", # 填写需要调用的模型名称
stream=True,
messages=[
{
"role": "user",
"content":[
{
"type":"text",
"text":"帮我查询慕尼黑07/05至07/15的日平均气温。并将所有平均气温数值组成数列,绘出折线图显示趋势。"
}
]
}
],
tools=[
{
"type": "web_browser"
},
{
"type": "code_interpreter", #智能编程助手
},
]
)
for trunk in response:
print(trunk)
if trunk.choices[0].delta.content is not None:
print(trunk.choices[0].delta.content, end="")
回复:这次我们进入到GLM-4-AllTools API的工作流中,看看模型为了解决Case2执行了哪些步骤:
#search
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': 'search'})]), finish_reason=None, index=0)], created=1720460600, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': '("'})]), finish_reason=None, index=0)], created=1720460600, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': 'M'})]), finish_reason=None, index=0)], created=1720460600, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': 'un'})]), finish_reason=None, index=0)], created=1720460600, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': 'ich'})]), finish_reason=None, index=0)], created=1720460600, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': ' average'})]), finish_reason=None, index=0)], created=1720460601, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': ' temperature'})]), finish_reason=None, index=0)], created=1720460601, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': ' July'})]), finish_reason=None, index=0)], created=1720460601, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': ' '})]), finish_reason=None, index=0)], created=1720460601, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': '5'})]), finish_reason=None, index=0)], created=1720460601, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': ' to'})]), finish_reason=None, index=0)], created=1720460601, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': ' July'})]), finish_reason=None, index=0)], created=1720460601, model='glm-4-alltools', usage=None, extra_json=None)
...
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_bwN-_DC2XvXuP2meMxKzd', function=None, type='web_browser', web_browser={'input': ''})]), finish_reason='tool_calls', index=0)], created=1720460601, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='tool', tool_calls=[ChoiceDeltaToolCall(index=None, id=None, function=None, type='web_browser', web_browser={'outputs': [{'title': 'Weather in Munich in July 2024', 'link': 'https://world-weather.info/forecast/germany/munich/july-2024/', 'content': 'Detailed ⚡ Munich Weather Forecast for July 2024 – day/night ?️ temperatures, precipitations – World-Weather.info'}, {'title': 'Munich, Bavaria, Germany Monthly Weather | AccuWeather', 'link': 'https://www.accuweather.com/en/de/munich/80331/july-weather/178086', 'content': 'Get the monthly weather forecast for Munich, Bavaria, Germany, including daily high/low, historical averages, to help you plan ahead.'}, {'title': 'Munich, Bavaria Weather Forecast July 2024: Daily Highs/Lows & Rain Trends', 'link': 'https://www.weathertab.com/en/c/e/07/federal-republic-of-germany/bavaria/munich/', 'content': 'Explore comprehensive July 2024 weather forecasts for Munich, including daily high and low temperatures, precipitation risks, and monthly temperature trends. Featuring detailed day-by-day forecasts, dynamic graphs of daily rain probabilities, and temperature trends to help you plan ahead.'}, {'title': 'Yearly & Monthly weather - Munich, Germany', 'link': 'https://www.weather-atlas.com/en/germany/munich-climate', 'content': 'Detailed climate information with charts - average monthly weather with temperature, pressure, humidity, precipitation, wind, daylight, sunshine, visibility, and UV index data. Munich sees longer daylight hours from 15.2 hours up to 16 hours from May to July, while the shortest daylight hours ranging from 8.5 hours to 8.9 hours happens between ...'}, {'title': 'Munich climate: weather by month, temperature, rain - Climates to Travel', 'link': 'https://www.climatestotravel.com/climate/germany/munich', 'content': 'At the former Munich-Riem airport, the daily average temperature ranges from -0.4 °C (31.4 °F) in January to 18.6 °C (65.5 °F) in July. Here are the average temperatures. Precipitation is quite abundant, around 950 millimeters (37.5 inches) per year.'}, {'title': 'July weather - Summer 2024 - Munich, Germany', 'link': 'https://www.weather-atlas.com/en/germany/munich-weather-july', 'content': 'Average high temperature in July: 23.1°C; The warmest month (with the highest average high temperature) is July (23.1°C). The month with the lowest average high temperature is January (2.7°C). Average low temperature in July: 12.6°C; The month with the highest average low temperature is July (12.6°C).'}, {'title': 'Munich weather in July 2024 | Sunheron', 'link': 'https://www.sunheron.com/europe/germany/bavaria/munich-weather-july/', 'content': 'The average daily temperature in July in Munich is 25 °C (78 °F). The ideal temperature for enjoying sunbathing by the water and a good temperature for other activities. For some people, it will be too hot in the direct sunlight and the stay may not be so pleasant.'}, {'title': 'Munich in july: average Weather, Temperature and Climate', 'link': 'https://www.whereandwhen.net/when/europe/germany/munich/july/', 'content': 'The weather in july in Munich is wet (with 6.9in of precipitation over 10 days). This is better than the previous month since in june it receives an average of 7.8in of precipitation over 12 days. The climate comfortable in that locality this month. Temperatures are up to 76°F. The seasonal minimum is 63°F.'}, {'title': 'Munich weather in July 2024 | Germany: How hot? - Weather2Travel.com', 'link': 'https://www.weather2travel.com/germany/munich/july/', 'content': 'Munich weather in July 2024. Expect 23°C daytime maximum temperatures in the shade with on average 8 hours of sunshine per day in Munich in July. Check more long-term weather averages for Munich in July before you book your next holiday to Germany in 2024/2025.'}]})]), finish_reason=None, index=0)], created=1720460602, model='glm-4-alltools', usage=None, extra_json=None)
...
#code interpreter, simulate in sandbox
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': '\n'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': 'plt'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': '.'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': 'grid'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': '('})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': 'True'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': ')'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': '\n'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': 'plt'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': '.'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': 'show'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': '()'})]), finish_reason=None, index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_ByzIxpcobsFBHhonh9UgI', function=None, type='code_interpreter', code_interpreter={'input': ''})]), finish_reason='tool_calls', index=0)], created=1720460616, model='glm-4-alltools', usage=None, extra_json=None)
ChatCompletionChunk(id='8822098568301210663', choices=[Choice(delta=ChoiceDelta(content=None, role='tool', tool_calls=[ChoiceDeltaToolCall(index=None, id=None, function=None, type='code_interpreter', code_interpreter={'outputs': [{'type': 'file', 'file': 'http://all-tool-interpreter.cn-wlcb.ufileos.com/3776fa6a-c175-457b-8911-0a697383fb03_fig.png?UCloudPublicKey=TOKEN_69f58d9b-ddb3-4bd0-9b29-5a4fe422c720&Expires=1720467819&Signature=dEJgDv6+/HkQokVWmJidf39WxpU='}]})]), finish_reason=None, index=0)], created=1720460619, model='glm-4-alltools', usage=None, extra_json=None)
最后返图:
Tools: Code Interpreter, Sandbox
#完整代码
from zhipuai import ZhipuAI
client = ZhipuAI(api_key="") # 请填写您自己的APIKey
response = client.chat.completions.create(
model="glm-4-alltools", # 填写需要调用的模型名称
stream=True,
messages=[
{
"role": "user",
"content":[
{
"type":"text",
"text":"帮我查询慕尼黑07/05至07/15的日平均气温。并用日平均气温数列绘出折线图显示趋势。"
}
]
}
],
tools=[
{
"type": "function",
"function": {
"name": "get_average_temperature_data_by_date",
"description": "用于汇总某地某段时间内的日平均气温,输入地点(city),日期范围(from_day,to_day),返回对应的日平均气温数列。",
"parameters": {
"type": "object",
"properties": {
"from_day": {
"description": "开始日期,格式为mm/dd",
"type": "string"
},
"to_day": {
"description": "截止日期,格式为mm/dd",
"type": "string"
},
"avg_temperature": {
"description": "平均气温",
"type": "string"
},
"required": ["city","from_day","to_day"]
},
}
}
},
{
"type": "code_interpreter",
},
]
)
for trunk in response:
print(trunk)
if trunk.choices[0].delta.content is not None:
print(trunk.choices[0].delta.content, end="")
需要调用函数 Function Call,模型会返回 status='requires_action'
ChatCompletionChunk(id='8822109666497191178', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=[ChoiceDeltaToolCall(index=None, id='call_cPf6NnnlWzSB0Fm7ZpgUF', function=ChoiceDeltaToolCallFunction(arguments='{"city":"慕尼黑"," from_day":"07/05"," to_day":"07/15"}', name='get_average_temperature_data_by_date'), type='function')]), finish_reason='tool_calls', index=0)], created=1720463116, model='glm-4-alltools', usage=CompletionUsage(prompt_tokens=435, completion_tokens=50, total_tokens=485), extra_json=None, status='requires_action')
添加函数调用的执行结果(Tool Message),以及模型生成的函数参数(Assistant Message)。
messages=[
{
"role": "user",
"content":[
{
"type":"text",
"text":"帮我查询慕尼黑07/05至07/15的日平均气温。并用日平均气温数列绘出折线图显示趋势。"
}
]
},
{
"role": "assistant",
"content":"arguments='{city\":\"慕尼黑\", \"from_day\":\"07/05\",\" to_day\":\"07/15\"}', name='get_average_temperature_data_by_date'"
},
{
"role": "tool",
"content": "[21.7, 16.6, 29.2, 25.0, 22.2, 25.9, 18.8, 22.2, 26.2, 26.1, 19.6]"
}
],
#执行
ChatCompletionChunk(id='8822109666497168900', choices=[Choice(delta=ChoiceDelta(content=None, role='tool', tool_calls=[ChoiceDeltaToolCall(index=None, id=None, function=None, type='code_interpreter', code_interpreter={'outputs': [{'type': 'file', 'file': 'http://all-tool-interpreter.cn-wlcb.ufileos.com/b9200b5b-73ed-4893-8187-1f7a1ab1c7d1_fig.png?UCloudPublicKey=TOKEN_69f58d9b-ddb3-4bd0-9b29-5a4fe422c720&Expires=1720470579&Signature=oSMDBUI6hDdZboES85CZUxgAZRc='}]})]), finish_reason=None, index=0)], created=1720463379, model='glm-4-alltools', usage=None, extra_json=None)
每次GLM-4-AllTools API调用结束,都会在最后的ChatCompletionChunk返回此次调用的Token使用情况,帮助用户进行及时快速监测。
#计费
ChatCompletionChunk(id='8822109735216674822', choices=[Choice(delta=ChoiceDelta(content=None, role='assistant', tool_calls=None), finish_reason='stop', index=0)], created=1720462433, model='glm-4-alltools', usage=CompletionUsage(prompt_tokens=1518, completion_tokens=313, total_tokens=1831), extra_json=None, status='completed'
总结:一番体验下来我对 GLM-4-AllTools API 是越用越喜欢,它主要有以下几个优点:
不过也存在一些小缺点:
大模型MaaS开放平台(bigmodel.cn)目前提供了GLM系列模型的API调用支持,包括通用模型、图像模型、embedding模型等。可以在文档中查看相关说明,并在体验中心进行快速体验。通过这次体验,我确确实实感受到了 GLM-4-AllTools API 给用户体验带来的提升,以及为开发者带来的便利,希望国内大模型厂商不断推出更强大的产品,共同助力中国大模型以及大模型产业的发展。
53AI,企业落地大模型首选服务商
产品:场景落地咨询+大模型应用平台+行业解决方案
承诺:免费POC验证,效果达标后再合作。零风险落地应用大模型,已交付160+中大型企业
2026-07-01
一文了解|SkillScan 智能体技能安全扫描最佳实践
2026-07-01
协作的逆向演进:从 Agent 逻辑重构团队管理
2026-07-01
港科大郭毅可谈Agentic AI时代的核心命题:人机共生,人不可能退场
2026-07-01
Sonnet 5终于来了,然而Opus 4.8现在有点尴尬
2026-07-01
AI可观测性:Prompt、Tool Call、Trace、Token全链路追踪
2026-07-01
AI Infra 全景图:Agent Framework、调度、编排、沙箱、记忆管理、Tracing 分层拆解
2026-07-01
Claude Science发布:60+科学数据库一个对话搞定
2026-07-01
AI 的向量空间里藏着心理学,这是一场嵌入模型的情绪对决
2026-04-15
2026-04-07
2026-04-07
2026-04-24
2026-04-17
2026-04-05
2026-04-02
2026-04-05
2026-04-14
2026-04-24
欢迎您使用【53AI 官方网站】(以下简称“本网站”或“我们”)。本《会员服务协议》(以下简称“本协议”)是您(以下简称“会员”或“用户”)与【深圳市博思协创网络科技有限公司】之间关于注册、登录及使用本网站会员服务所订立的法律协议。
在您注册或登录前,请务必审慎阅读、充分理解各条款内容,特别是免除或限制责任的条款、知识产权条款、争议解决条款等。此类条款将以加粗形式提示您注意。 当您通过微信公众号授权、手机验证码验证或其他方式成功登录本网站时,即视为您已完全理解并同意接受本协议的全部内容。
一、 定义
本网站:指由【深圳市博思协创网络科技有限公司】运营的,域名为【53ai.com】的网站及相关移动端页面。
会员服务:指本网站向注册会员提供的知识库文章查阅、内容检索及其他相关增值服务。
知识库内容:指本网站发布的包括但不限于文字、图表、数据、研究报告、行业分析等数字化内容资源。
二、 账号注册与登录
登录方式:本网站支持以下登录方式,您可根据实际情况选择:
微信公众号授权登录:您同意将您的微信OpenID信息授权给本网站,用于创建或关联会员账号。
手机验证码登录:您需提供真实有效的手机号码,并通过短信验证码完成身份验证与登录/注册。
账号安全:您的账号仅限您本人使用,禁止赠与、借用、租用、转让或售卖。因您保管不善导致的账号被盗、密码泄露等损失,由您自行承担。
实名认证:根据相关法律法规要求,我们可能要求您在特定功能下完成实名认证。如您拒绝提供,可能无法使用部分或全部服务。
未成年人保护:若您未满18周岁,请在法定监护人的陪同下阅读本协议,并在征得监护人同意后使用本服务。
三、 服务内容与规范
知识库查阅权限:会员登录后,有权按照其会员等级对应的权限范围,在线浏览、检索本网站知识库中的相关文章及内容。
服务变更:我们有权根据业务发展需要,调整、变更或终止部分服务内容,并将以网站公告、公众号消息等方式提前通知。
禁止行为:您在使用服务时不得实施以下行为:
利用技术手段批量爬取、下载、转存知识库内容;
将知识库内容用于商业目的或未经授权地向第三方传播;
干扰本网站正常运行或侵犯其他用户合法权益;
发布违法违规信息或从事违反公序良俗的活动。
四、 知识产权声明
权利归属:本网站知识库中的排版设计、软件代码等内容的知识产权均归【公司全称】或原权利人所有,受《中华人民共和国著作权法》等法律保护。
有限许可:本网站授予会员一项非独占、不可转让、不可转授权的普通许可,仅限于个人学习、研究之目的在线查阅知识库内容。
侵权追责:未经书面许可,任何单位或个人不得以任何形式复制、转载、摘编、镜像、汇编或以其他方式使用上述内容。一经发现,我们保留追究其法律责任的权利。
五、 个人信息保护
我们重视对您个人信息的保护。关于我们如何收集、使用、存储和保护您的个人信息,请单独阅读 《隐私政策》。
您通过微信公众号授权或手机号验证所提供的信息,我们将严格按照《个人信息保护法》的规定处理,仅用于身份识别、服务提供及安全验证等必要用途。
您可以随时通过网站设置或联系客服行使查阅、更正、删除个人信息及撤回授权同意的权利。
六、 免责声明
内容准确性:知识库内容仅供参考,不构成专业建议。我们不对其完整性、准确性、时效性作任何明示或暗示的保证,您应自行判断并承担使用风险。
不可抗力:因自然灾害、政策法规变化、网络故障、第三方平台接口异常(如微信接口维护、运营商短信通道故障)等不可抗力导致的服务中断或延迟,我们不承担违约责任。
第三方链接:本网站可能包含指向第三方网站的链接,该等网站的内容和服务不受我们控制,请您自行甄别风险。
七、 违约责任
如您违反本协议约定,我们有权视情节采取警告、限制功能、暂停服务、注销账号等措施,并保留要求赔偿损失的权利。
如因您的违约行为导致我们遭受行政处罚、第三方索赔或商誉损失,您应承担全部赔偿责任(包括但不限于罚款、赔偿金、律师费、公证费等)。
八、 法律适用与争议解决
本协议的订立、执行和解释均适用中华人民共和国大陆地区法律。
因本协议产生的或与本协议有关的任何争议,双方应友好协商解决;协商不成的,任何一方均可向【公司所在地】有管辖权的人民法院提起诉讼。
九、 其他
本协议构成双方就本服务达成的完整协议,取代此前任何口头或书面约定。
本协议任一条款被认定为无效或不可执行的,不影响其他条款的效力。
我们对本协议享有最终解释权,并在法律允许的范围内保留随时修改的权利。修改后的协议一经公布即生效,继续使用服务即视为同意修订内容。