标题: Imagine with Claude体验
作者: #行思渐远
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/999903
时间: 2025-09-30 14:43:46
摘要:
作者: #行思渐远
板块: #开发调优
编号:
999903帖子: https://linux.do/t/topic/999903
时间: 2025-09-30 14:43:46
摘要:
claude 今天也发布了一个新功能,如标题所示Imagine with Claude(与克劳德一起想象)。
官网来源: Introducing Claude Sonnet 4.5 \ Anthropic
max用户可以在接下来的5天体验(之后应该会再此关闭进行内部测试吧),因此我尝试体验下这到底是个什么东西。
开始
目标:做一个B2B2C商城
起初告诉他我要做什么,如果他是我,他会怎么做,然后就给出了第一个窗口:
这个时候,窗口中的任何东西都是可以点,文字也能框选。下方聊天窗口会显示用户当前操作,比如,点击“user clicked”。
然后,根据他给我架构规划,我告诉它我要优先上线,然后慢慢迭代架构,让他给我做抉择就行,它继续给了我第二个内容窗口:
窗口最底部,有这几个按钮
我感觉内容没什么问题,直接点击“API接口设计”,他开始提供第三个窗口:
到此,对这个Imagine with Claude产品大概了解了,其实他解决了常规聊天的一些问题:
1.平常对话窗口聊天时,我们经常需要关注刚刚说过的话,或者AI给我们的回复内容,导致上下来会翻来翻去,很麻烦,GPT对此给的一个解决方案是,支持对话分支,但是体验下来,没有这个直观
2.窗口可以并行展示,随意拖动,让我们跟AI产生了一种面对面的3D感,好像对面就是一个真的人,在跟我们对话决策办事,任何反馈都更家实时,而不需要刻意记住沟通过什么,因为内容都会平铺在眼前,人只需要关注当下的重点,需要某些内容时,直接切换窗口继续回到与AI的沟通,不过目前上下文是有限制的,10万token,所以具体的事情还得让Claude Code去干。
总结:Imagine with Claude就像人类发展的仿生领域一样,只不过换了角色,人作为仿照物,让AI更加像人一样的行为。
标题: 新模型deepseekv3.2exp和claude4.5简单测评(个人见解)
作者: #maataa
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/999906
时间: 2025-09-30 14:44:37
摘要:
作者: #maataa
板块: #开发调优
编号:
999906帖子: https://linux.do/t/topic/999906
时间: 2025-09-30 14:44:37
摘要:
各位佬友,新模型怎么样(deepseekv3.2-exp, claude 4.5),我先简单抛砖引玉一下
测测前端小游戏生成能力:
提示词:
使用前端实现一个贴合真实物理场景的乒乓球游戏(本人比较喜欢打乒乓球)
deepseek-v3.2-exp
deepseek-v3.2-exp: 游戏完整性很好,一遍跑完直接可以玩,但是不太像乒乓球,像是以前的弹球游戏,
ui: 7/10(比较简洁)
游戏完整度:9/10(有物理加速效果)
生成速度:6/10 思考64s
准确性:10分 一次通过
代码如下:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>物理乒乓球游戏</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(to bottom, #1a2980, #26d0ce);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow: hidden;
}
.game-container {
position: relative;
width: 800px;
height: 500px;
background-color: #111;
border: 4px solid #fff;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
overflow: hidden;
}
#gameCanvas {
display: block;
background-color: #000;
}
.score-board {
position: absolute;
top: 20px;
left: 0;
right: 0;
display: flex;
justify-content: space-between;
padding: 0 30px;
color: white;
font-size: 24px;
font-weight: bold;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.player-score, .ai-score {
background: rgba(0, 0, 0, 0.5);
padding: 5px 15px;
border-radius: 5px;
}
.center-line {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 100%;
background: repeating-linear-gradient(
to bottom,
transparent,
transparent 20px,
rgba(255, 255, 255, 0.5) 20px,
rgba(255, 255, 255, 0.5) 40px
);
}
.controls {
position: absolute;
bottom: 20px;
left: 0;
right: 0;
text-align: center;
color: white;
font-size: 14px;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.game-over {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: rgba(0, 0, 0, 0.8);
color: white;
font-size: 36px;
z-index: 10;
display: none;
}
.restart-btn {
margin-top: 20px;
padding: 10px 20px;
background: #4CAF50;
border: none;
border-radius: 5px;
color: white;
font-size: 18px;
cursor: pointer;
transition: background 0.3s;
}
.restart-btn:hover {
background: #45a049;
}
.game-title {
position: absolute;
top: 20px;
left: 0;
right: 0;
text-align: center;
color: white;
font-size: 28px;
font-weight: bold;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
</style>
</head>
<body>
<div class="game-container">
<div class="game-title">物理乒乓球</div>
<div class="score-board">
<
标题: 想注册个谷歌账号,发现这个提示,话说,这个要怎么通过啊?
作者: #gavin
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/999907
时间: 2025-09-30 14:44:41
摘要:
作者: #gavin
板块: #开发调优
编号:
999907帖子: https://linux.do/t/topic/999907
时间: 2025-09-30 14:44:41
摘要:
如图,有佬能传授下过验证的经验吗?
标题: [ AI快讯 ] GLM-4.6正式文档上线
作者: #PearDec
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/999909
时间: 2025-09-30 14:45:27
摘要:
作者: #PearDec
板块: #前沿快讯
编号:
999909帖子: https://linux.do/t/topic/999909
时间: 2025-09-30 14:45:27
摘要:
GLM Coding 编码套餐再升级!20元起包月畅享 GLM-4.6,1/7价格,3倍用量,支持 Claude Code、Cline 等全球主流编程工具,独家升级支持多模态理解与联网搜索,极速响应,稳定可靠!
GLM-4.6 是智谱最新的旗舰模型,其总参数量 355B,激活参数 32B。GLM-4.6 所有核心能力上均完成了对 GLM-4.5 的超越,具体如下:
高级编码能力:在公开基准与真实编程任务中,GLM-4.6的代码能力对齐Claude Sonnet 4,是国内已知的最好的Coding模型。
上下文长度:上下文窗口由128K→200K,适应更长的代码和智能体任务。
推理能力:推理能力提升,并支持在推理过程中调用工具。
搜索能力:增强了模型在工具调用和搜索智能体上的表现,在智能体框架中表现更好。
写作能力:在文风、可读性与角色扮演场景中更符合人类偏好。
多语言翻译:进一步增强跨语种任务的处理效果。
1. 综合评测
为评估模型通用能力,我们选择了 7 大权威基准:AIME 25、LCB v6、HLE、SWE-Bench Verified、BrowseComp、Terminal-Bench、τ^2-Bench。
结果显示,GLM-4.6 在大部分榜单表现比肩 Claude Sonnet 4,稳居国产模型首位。
2. 真实编程评测
为了更好地测试模型在真实编程任务中的能力,我们在 Claude Code 环境下进行了XX个真实场景编程任务测试。
实际测试结果显示,GLM-4.6 在实际性能方面超越其他国产模型,领先于 Claude Sonnet 4。在平均tokens消耗上,GLM-4.6低于多个模型,与 GLM-4.5 相比,GLM-4.6 在同类任务中可节省 30% 以上 tokens 消耗。
为确保透明性与可信度,智谱已公开全部测试题目与 Agent 轨迹,供业界验证与复现。
标题: 有没有什么店铺能买 其他ai,然后开 deepseek 发票的
作者: #jrerrq
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/999930
时间: 2025-09-30 14:51:34
摘要:
作者: #jrerrq
板块: #搞七捻三
编号:
999930帖子: https://linux.do/t/topic/999930
时间: 2025-09-30 14:51:34
摘要:
你懂的,消息服务费.
标题: 【Meow】开源项目想找一个Collaborators
作者: #advent
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/999946
时间: 2025-09-30 14:56:04
摘要:
作者: #advent
板块: #开发调优
编号:
999946帖子: https://linux.do/t/topic/999946
时间: 2025-09-30 14:56:04
摘要:
很久之前,在L站宣传过自己的项目
Meow开源高颜值便签应用,近期更新~ - 开发调优 - LINUX DO
那段时间更新挺勤快的。最近课业上面的事情比较上心,又在准备实习,所以很少更新了。这两天突然发现star反而涨了不少,
不更新的话感觉挺对不住有些用户的(maybe,暂且相信有人在用吧)。所以想找一个Collaborators一起玩玩,要求非常低,因为我本身也非常菜,做这个项目也是拿来玩玩的:
vibe coding
会测试项目
审美在线,有想法
标题: 如何进一步压榨你的CPU(挖矿级别)
作者: #user0000
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/999952
时间: 2025-09-30 14:59:43
摘要:
作者: #user0000
板块: #搞七捻三
编号:
999952帖子: https://linux.do/t/topic/999952
时间: 2025-09-30 14:59:43
摘要:
我想没有一块CPU能稳定运行这个任务吧?
标题: Claude Code的VSCode插件升级到2.0后跳过登录的配置方案
作者: #崮生
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/999953
时间: 2025-09-30 14:59:56
摘要:
作者: #崮生
板块: #开发调优
编号:
999953帖子: https://linux.do/t/topic/999953
时间: 2025-09-30 14:59:56
摘要:
首先创建 ~/.claude/config.json
配置 (这个值是随便填的):
{ "primaryApiKey": "llej" }
然后打开插件的设置页面,点击在 settings.json 中编辑环境变量
配置如下,即可正常在插件 ui 中问问题了
"claude-code.environmentVariables": [
{
"name": "ANTHROPIC_AUTH_TOKEN",
"value": "你的sk密钥"
},
{
"name": "ANTHROPIC_BASE_URL",
"value": "https://open.bigmodel.cn/api/anthropic"
}
],
原文地址
标题: 智谱旗舰模型GLM-4.6上线,代码能力全面进阶
作者: #zhongruan
板块: #国产替代
编号:
帖子: https://linux.do/t/topic/999954
时间: 2025-09-30 15:00:13
摘要:
作者: #zhongruan
板块: #国产替代
编号:
999954帖子: https://linux.do/t/topic/999954
时间: 2025-09-30 15:00:13
摘要:
微信公众号原文
简略总结:上下文终于变长了,从128k变成了200k,适配寒武纪、摩尔线程芯片,开源
GLM-4.6 技术博客:GLM-4.6: Advanced Agentic, Reasoning and Coding Capabilies
标题: 电影一般到哪里可以下载到最新的
作者: #水中月
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/999956
时间: 2025-09-30 15:00:30
摘要:
作者: #水中月
板块: #资源荟萃
编号:
999956帖子: https://linux.do/t/topic/999956
时间: 2025-09-30 15:00:30
摘要:
电影一般到哪里可以下载到最新的,望推荐一下,谢谢
标题: claude code vscode插件开启yolo模式免确认
作者: #nmyh
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/999960
时间: 2025-09-30 15:01:29
摘要:
作者: #nmyh
板块: #开发调优
编号:
999960帖子: https://linux.do/t/topic/999960
时间: 2025-09-30 15:01:29
摘要:
github.com
GitHub - cjh-store/cc-cli: claude code工具集合
claude code工具集合
开启yolo模式,帮忙点点star
标题: Arc官网被cloudflare屏蔽了无法更新
作者: #Andy
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/999964
时间: 2025-09-30 15:02:31
摘要:
作者: #Andy
板块: #搞七捻三
编号:
999964帖子: https://linux.do/t/topic/999964
时间: 2025-09-30 15:02:31
摘要:
是我的个例么,还是都屏蔽了,家里也一样打不开