LinuxDo 新帖推送
182 subscribers
251K photos
313K links
Download Telegram
标题: 26年无人机新规下来后还建议买吗
作者: #xinnn
板块: #搞七捻三
编号: 1430978
帖子: https://linux.do/t/topic/1430978
时间: 2026-01-12 11:10:35
摘要:
想体验下无人机,计划入手御4,但是看网上说新规特别严,限制的非常多
标题: 有没有非常快的思考模型
作者: #Diffuser
板块: #开发调优
编号: 1430984
帖子: https://linux.do/t/topic/1430984
时间: 2026-01-12 11:11:55
摘要:
公司业务主要是翻译和文案优化,要求接口响应速度在3s内。测了一圈国内的模型一个比一个慢,rpm还很低。最后测了openrouter的gpt-oss-120b速度完全够了,就是质量差点意思,还有没有其他选择?
标题: 《流浪地球3》2027大年初一上映 郭帆宣布刘德华杀青
作者: #宋志辉
板块: #前沿快讯
编号: 1430987
帖子: https://linux.do/t/topic/1430987
时间: 2026-01-12 11:13:00
摘要:
《流浪地球》系列导演郭帆日前发文宣布刘德华杀青,应该是在《流浪地球3》中的戏份已经拍完。**值得注意的是,杀青庆祝蛋糕上写着“如没杀青 大吉还在”,这或许是在暗示,下一步还会有刘德华参演。

据悉,《流浪地球3》分为上下两集,剧本创作历经二十三个月,共计十五万字。
电影在4月15日正式开机,依然由郭帆执导,郭帆、杨治学、龚格尔编剧,计划2027大年初一上映。
目前已经公布的阵容有:刘德华、吴京、沈腾、马丽、杨紫琼、李雪健、赵今麦、李光洁、沙溢、宁理、王智等。

《流浪地球3》将继续讲述太阳即将毁灭的背景下,人类为了生存而在地球表面建造巨大推进器,踏上寻找新家园的宇宙征程。
在本作中,流浪地球时代的年轻人将肩负起拯救地球和人类命运的重任,面对宇宙中的重重危机,他们必须挺身而出,展开一场惊心动魄的生死之战。
标题: 我发现我好像很少遇到降智
作者: #你好坏噢
板块: #开发调优
编号: 1431001
帖子: https://linux.do/t/topic/1431001
时间: 2026-01-12 11:16:07
摘要:
用的德国netcup小鸡反代没降智,用廉价机场上gptapp也没降智
我是直接问是什么模型测试的,难道是测试方法不对?
标题: 一顾倾人城,再顾倾人国
作者: #潇湘泪月
板块: #搞七捻三
编号: 1431002
帖子: https://linux.do/t/topic/1431002
时间: 2026-01-12 11:16:13
摘要:
一顾倾人城,再顾倾人国

分享一下周末日常
标题: Spring AI 自定义 skills 有佬友在研究吗
作者: #Kings
板块: #开发调优
编号: 1431003
帖子: https://linux.do/t/topic/1431003
时间: 2026-01-12 11:16:29
摘要:
没看明白 Spring AI 2.0 快照里面的关于 Skills 的使用为啥是个 ID?
Skills 里面的内容是个 MD 文档,照理来说如果我本地自定义个一个 Skill,这个代码里面的anthropicSkill不应该是个自定义的字符串吗



github.com/spring-projects/spring-ai



models/spring-ai-anthropic/src/main/java/org/springframework/ai/anthropic/api/AnthropicApi.java


main






*/
@JsonInclude(Include.NON_NULL)
public record Skill(@JsonProperty("type") SkillType type, @JsonProperty("skill_id") String skillId,
@JsonProperty("version") String version) {

/**
* Create a Skill with default "latest" version.
* @param type Skill type
* @param skillId Skill ID
*/
public Skill(SkillType type, String skillId) {
this(type, skillId, "latest");
}

public static SkillBuilder builder() {
return new SkillBuilder();
}

public static final class SkillBuilder {

private SkillType type;















@Service
public class BrandedDocumentService {

private static final String BRANDING_SKILL_ID = "skill_01AbCdEfGhIjKlMnOpQrStUv";

private final AnthropicChatModel chatModel;
private final AnthropicApi anthropicApi;

public BrandedDocumentService(AnthropicChatModel chatModel, AnthropicApi anthropicApi) {
this.chatModel = chatModel;
this.anthropicApi = anthropicApi;
}

public byte[] generateReport(String prompt, boolean includeBranding) throws IOException {
// Build options with document skill
AnthropicChatOptions.Builder optionsBuilder = AnthropicChatOptions.builder()
.model("claude-sonnet-4-5")
.maxTokens(8192)
.anthropicSkill(AnthropicApi.AnthropicSkill.XLSX);

// Add custom branding skill if requested
if (includeBranding) {
optionsBuilder.customSkill(BRANDING_SKILL_ID);
}

ChatResponse response = chatModel.call(
new Prompt(prompt, optionsBuilder.build())
);

// Extract and download the generated file
List<String> fileIds = SkillsResponseHelper.extractFileIds(response);

if (fileIds.isEmpty()) {
throw new RuntimeException("No file was generated");
}

return anthropicApi.downloadFile(fileIds.get(0));
}
}

https://docs.spring.io/spring-ai/reference/2.0-SNAPSHOT/api/chat/anthropic-chat.html#_complete_custom_skills_example
标题: 救命!有没有高效插入参考文献的技巧?
作者: #Qingshao Sun
板块: #搞七捻三
编号: 1431005
帖子: https://linux.do/t/topic/1431005
时间: 2026-01-12 11:16:41
摘要:
最近写文章要在段落里插参考文献,之前听说 consensus、claude code 的 search tool 能直接插,试了下 — 结果要么文献看着就不靠谱,要么不给 PMID/DOI,好不容易拿到链接还得自己验证合不合适  各位佬 有没有好的方法
标题: 进站总是弹窗403,怎么去除啊?
作者: #Moximo
板块: #搞七捻三
编号: 1431013
帖子: https://linux.do/t/topic/1431013
时间: 2026-01-12 11:18:06
摘要:
进站半年了,每次都谈窗403。。。。佬们有知道什么情况嘛?是我个例还是怎么?
标题: 硅基流动14邀请还能用,需要充值0.1就能用了
作者: #yjs198198
板块: #开发调优
编号: 1431015
帖子: https://linux.do/t/topic/1431015
时间: 2026-01-12 11:18:55
摘要:
如果你的余额是0或者是负的 需要你充值 0.1 变为正的 然后 就能正常使用优惠券了
标题: 自用Certimate Docker Compose配置分享
作者: #余名君
板块: #开发调优
编号: 1431017
帖子: https://linux.do/t/topic/1431017
时间: 2026-01-12 11:19:03
摘要:
分享一个自用的 Certimate docker compose file 配置,一个支持 SSL 证书从申请到部署完全自动化的开源软件。

文档 | Certimate
https://docs.certimate.me/zh-CN/docs/introduction/

services:
certimate:
image: certimate/certimate:latest
container_name: certimate
restart: always
ports:
- "127.0.0.1:8090:8090"
volumes:
- /etc/localtime:/etc/localtime:ro
- ./data:/app/pb_data
environment:
- TZ=Asia/Shanghai
deploy:
resources:
limits:
memory: 512M
reservations:
memory: 128M
security_opt:
- no-new-privileges:true
read_only: true
tmpfs:
- /tmp:size=64M,mode=1777
healthcheck:
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8090/api/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
compress: "true"

networks:
default:
driver: bridge
标题: nvidia api 最大用处是用来沉浸翻译,嘎嘎快
作者: #waves
板块: #搞七捻三
编号: 1431047
帖子: https://linux.do/t/topic/1431047
时间: 2026-01-12 11:23:39
摘要:
去这里登录获取key
build.nvidia.com
用的站内大佬的陪读蛙翻译,打开网页,2秒内翻译好所有
附上翻译蛙配置
api:https://integrate.api.nvidia.com/v1
模型:moonshotai/kimi-k2-instruct
感觉比 DeepLX快,至于公益站肯定是快的,也有可能是模型不同的原因
标题: 不挂🪜的情况下,为什么github有的时候能打开有的时候又不能
作者: #你说蓝色是你最爱的颜色
板块: #开发调优
编号: 1431062
帖子: https://linux.do/t/topic/1431062
时间: 2026-01-12 11:27:26
摘要:
有时候给同事的github开源工具链接(同事没有),直连的时候,有的时候能打开,有的时候又打不开,或者说有的同事能打开,有的同事不行(都是用的热点,不是内网),这是什么原理
标题: 外包大模型售后支持岗的薪资范围?
作者: #翎
板块: #搞七捻三
编号: 1431063
帖子: https://linux.do/t/topic/1431063
时间: 2026-01-12 11:28:09
摘要:
各位了解行业的大佬们,可否给点建议?
个人情况概括:25届毕业双非一本,计算机相关专业(数据科学与大数据技术)毕业,没有实际实习工作经验,理论上还算应届生。有一些全栈项目独立开发经验(GradNote)
当然,我也知道开发岗在发展前景上是要比这售后强不少的,不过具体我个人来讲不管是面试技巧还是简历内容都还有很多要优化的地方,多少找个活先干着?(不过这又有脏简历等等问题,找工作好烦 )。
另外我也不清楚目前的水平能对应多高工资
JD如下图,各位大佬们,base西安,云平台售后外包,还没谈薪。大概会是个什么水平?值不值得去?应不应该继续精进,找个开发岗?