标题: 一顾倾人城,再顾倾人国
作者: #潇湘泪月
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431002
时间: 2026-01-12 11:16:13
摘要:
作者: #潇湘泪月
板块: #搞七捻三
编号:
1431002帖子: https://linux.do/t/topic/1431002
时间: 2026-01-12 11:16:13
摘要:
一顾倾人城,再顾倾人国
分享一下周末日常
标题: Spring AI 自定义 skills 有佬友在研究吗
作者: #Kings
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1431003
时间: 2026-01-12 11:16:29
摘要:
作者: #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
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431005
时间: 2026-01-12 11:16:41
摘要:
作者: #Qingshao Sun
板块: #搞七捻三
编号:
1431005帖子: https://linux.do/t/topic/1431005
时间: 2026-01-12 11:16:41
摘要:
最近写文章要在段落里插参考文献,之前听说 consensus、claude code 的 search tool 能直接插,试了下 — 结果要么文献看着就不靠谱,要么不给 PMID/DOI,好不容易拿到链接还得自己验证合不合适 各位佬 有没有好的方法
标题: 进站总是弹窗403,怎么去除啊?
作者: #Moximo
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431013
时间: 2026-01-12 11:18:06
摘要:
作者: #Moximo
板块: #搞七捻三
编号:
1431013帖子: https://linux.do/t/topic/1431013
时间: 2026-01-12 11:18:06
摘要:
进站半年了,每次都谈窗403。。。。佬们有知道什么情况嘛?是我个例还是怎么?
标题: 硅基流动14邀请还能用,需要充值0.1就能用了
作者: #yjs198198
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1431015
时间: 2026-01-12 11:18:55
摘要:
作者: #yjs198198
板块: #开发调优
编号:
1431015帖子: https://linux.do/t/topic/1431015
时间: 2026-01-12 11:18:55
摘要:
如果你的余额是0或者是负的 需要你充值 0.1 变为正的 然后 就能正常使用优惠券了
标题: 自用Certimate Docker Compose配置分享
作者: #余名君
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1431017
时间: 2026-01-12 11:19:03
摘要:
作者: #余名君
板块: #开发调优
编号:
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
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431047
时间: 2026-01-12 11:23:39
摘要:
作者: #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有的时候能打开有的时候又不能
作者: #你说蓝色是你最爱的颜色
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1431062
时间: 2026-01-12 11:27:26
摘要:
作者: #你说蓝色是你最爱的颜色
板块: #开发调优
编号:
1431062帖子: https://linux.do/t/topic/1431062
时间: 2026-01-12 11:27:26
摘要:
有时候给同事的github开源工具链接(同事没有),直连的时候,有的时候能打开,有的时候又打不开,或者说有的同事能打开,有的同事不行(都是用的热点,不是内网),这是什么原理
标题: 外包大模型售后支持岗的薪资范围?
作者: #翎
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431063
时间: 2026-01-12 11:28:09
摘要:
作者: #翎
板块: #搞七捻三
编号:
1431063帖子: https://linux.do/t/topic/1431063
时间: 2026-01-12 11:28:09
摘要:
各位了解行业的大佬们,可否给点建议?
个人情况概括:25届毕业双非一本,计算机相关专业(数据科学与大数据技术)毕业,没有实际实习工作经验,理论上还算应届生。有一些全栈项目独立开发经验(GradNote)
当然,我也知道开发岗在发展前景上是要比这售后强不少的,不过具体我个人来讲不管是面试技巧还是简历内容都还有很多要优化的地方,多少找个活先干着?(不过这又有脏简历等等问题,找工作好烦 )。
另外我也不清楚目前的水平能对应多高工资
JD如下图,各位大佬们,base西安,云平台售后外包,还没谈薪。大概会是个什么水平?值不值得去?应不应该继续精进,找个开发岗?
标题: csun未成功提交,但手机号却被标记占用问题
作者: #ramble
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1431064
时间: 2026-01-12 11:28:15
摘要:
作者: #ramble
板块: #开发调优
编号:
1431064帖子: https://linux.do/t/topic/1431064
时间: 2026-01-12 11:28:15
摘要:
RT,申请到最后一步出现无法提交问题(忘记截图,无法复现),应该是表单每一页都设置了很短的提交时间要求,超时就会止步于此。如果再回退,重新走一遍流程,就会提示手机被占用,对于只有一个北美实体号的我就无法继续了……
请问各位佬友,对于未提交成功的,多久才能释放手机号,重新申请啊?
标题: app端自动化(要求秒级频率识别文本数据+模拟点击)
作者: #echoxxzhang
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1431069
时间: 2026-01-12 11:29:22
摘要:
作者: #echoxxzhang
板块: #开发调优
编号:
1431069帖子: https://linux.do/t/topic/1431069
时间: 2026-01-12 11:29:22
摘要:
目前我处于了解阶段,知道例如airtest、appium,但还没深入了解。如果有接触过这块的大佬帮忙指点一二,可以省去不少时间,非常感谢。
我自己尝试过的:
1.app 具备反抓包策略,而且接口加密,逆向成本太高,
2.考虑过按键精灵模拟点击搭配ocr识别来做,但较难实现“秒级频率识别文本数据”
标题: 佬们,求救。
作者: #乐天张国荣
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431074
时间: 2026-01-12 11:30:00
摘要:
作者: #乐天张国荣
板块: #搞七捻三
编号:
1431074帖子: https://linux.do/t/topic/1431074
时间: 2026-01-12 11:30:00
摘要:
公司最近想做 AI 分享会,主要是给老古董说一下如何高效使用 AI 进行写代码,这个方向应该如何培训,之前培训过一次主要是提示词的修改内容,然后使用一些 ide 限制全局规则。目前效果不太明显,应该如何更好的讲解呢?还有一个问题就是,现在国内文本转语音做的比较好的有哪几家?最好可以提供 API 接口的
标题: 被怀疑是暗广
作者: #不熬夜
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431077
时间: 2026-01-12 11:30:52
摘要:
作者: #不熬夜
板块: #搞七捻三
编号:
1431077帖子: https://linux.do/t/topic/1431077
时间: 2026-01-12 11:30:52
摘要:
没想到,第一次在站内的分享贴居然能被怀疑是暗广,特意去除了aff,没想到还是没办法哈哈哈
https://linux.do/t/topic/1406215 这个教程其实就是手把手教学而已,我实在不知道暗广在哪里 。
针对代理的问题 我之前甚至怕违规 还问了站内大佬 https://linux.do/t/topic/1412638 没想到被怀疑暗广了
发这个代理的原因是什么呢
是因为站内很多佬友没有很好的家宽来源,在验证过程就显示ip被ban,我自己实验发现这个渠道可以成功,并且验证了确实有效才发出来的 整个教程里面没有一处是需要花钱的(绑卡自己有卡是可以自己搞的,没卡我也说了上就有)
这个代理有风控我觉得也很正常,本来人家就是给跨境用的,大多数佬友都是可以正常搞到免费送的流量的。
如果觉得收了任何广告可以直接举报哈 如果有的话我直接申请管理员删帖就行 令人宫寒
标题: 推荐一个动漫网站
作者: #Harleens
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431078
时间: 2026-01-12 11:30:53
摘要:
作者: #Harleens
板块: #搞七捻三
编号:
1431078帖子: https://linux.do/t/topic/1431078
时间: 2026-01-12 11:30:53
摘要:
https://www.omofuna.com/ 有很多动漫可以免费看哦。
标题: 今天佬友们记得要预约2026马年贺岁纪念币,有攻略吗?
作者: #wcc526
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/1431081
时间: 2026-01-12 11:32:04
摘要:
作者: #wcc526
板块: #福利羊毛
编号:
1431081帖子: https://linux.do/t/topic/1431081
时间: 2026-01-12 11:32:04
摘要:
今天佬友们记得要预约2026马年贺岁纪念币,有攻略吗?求大佬分享攻略,好像有脚本,
标题: sora2.提示词有汇总么
作者: #卡卡
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/1431082
时间: 2026-01-12 11:32:08
摘要:
作者: #卡卡
板块: #搞七捻三
编号:
1431082帖子: https://linux.do/t/topic/1431082
时间: 2026-01-12 11:32:08
摘要:
sora2.提示词有汇总么
标题: 理性讨论 gpt gemini 和一众国产模型的编程能力和 Claude还有多大差距!
作者: #miaoxiansheng
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/1431084
时间: 2026-01-12 11:32:35
摘要:
作者: #miaoxiansheng
板块: #开发调优
编号:
1431084帖子: https://linux.do/t/topic/1431084
时间: 2026-01-12 11:32:35
摘要:
不看跑分只看实际体验