Arch新手,审美积累中,看看佬友们的fastfetch/neofetch和桌面 1 个帖子 - 1 位参与者 阅读完整话题
如题,使用codex,mcp布置了fetch,github,computeruse,Chrome,playwright,tavily,一看这么多搜索相关。问问tavily比起他内置的搜索有啥优势吗?我只知道computeruse的浏览器总是他说被url拦住,而且干啥都慢慢的,是不是需要啥skill?Chrome还算好用。playwrghit是不是可以删掉了?fetch好像常用,但我装的搜索过多了,怎么舍弃?问问大佬们搜索都是怎么配置的 2 个帖子 - 2 位参与者 阅读完整话题
我想用cloudflare workers加速下hf模型的下载,搞了一个转发,请求hf的内容 然后发现响应头中不包括 accept-ranges ,不知道怎么回事,因为直接请求hf的时候响应是带的,转发后就没了. 所以问下大佬们,有没有遇到过这种情况,怎么解决的? 1 个帖子 - 1 位参与者 阅读完整话题
const origFetch = window.fetch; window.fetch = function(url, options) { if (options?.body) { try { let body = JSON.parse(options.body); if (body.cardNo !== undefined) { body.cardNo = '填入你的身份证号'; options = { ...options, body: JSON.stringify(body) }; } } catch(e) {} } return origFetch.apply(this, arguments); }; 笑嘻了,成功绕过 14 岁验证 名字正确填写,身份证随意 1 个帖子 - 1 位参与者 阅读完整话题
chatgpt 账号,登录到 Codex 后,反代出来成 api, 假设我不在 Codex 里使用,而是直接使用,例如前端 fetch 或者 axios 这样的方式调用 openai 会认为这个请求是 codex 发来的吗 它会被加上一些提示词吗,比如关于代码开发相关的指引 为什么会产生这个疑问呢? 因为我通过这种方式调的接口,感觉 AI 味有点重,而且是改不过来的那种, 比如它经常会说:“稳” “盯” 这样的话, 我在想会不会是 openai 对它增加了开发相关的提示词 6 个帖子 - 6 位参与者 阅读完整话题
Oauth Opus 4.7 xhigh 已经连 Web fetch 都不会了 5 个帖子 - 3 位参与者 阅读完整话题
据 Search and Fetch are now FREE for every agent, everywhere! | TinyFish Blog 免费额度 : Search(搜索):每分钟 5 次查询。 Fetch(抓取):每分钟 25 个 URL。 适用范围 :兼容 Claude Code、Codex、Cursor、OpenCode、Antigravity 等智能体 据说是靠一个定制的 Chromium 内核集群,内置了隐蔽处理、并行执行和完整的 JavaScript 渲染功能。让tinyfish能够实现免费且快速的搜索和抓取服务。 不知道有无佬友使用过,可以分享下使用体验 2 个帖子 - 2 位参与者 阅读完整话题
(async function checkoutLinkOnly() { try { const session = await fetch('/api/auth/session').then((r) => r.json()); const accessToken = session?.accessToken; if (!accessToken) { console.log('accessToken: null'); return; } const payload = { plan_name: 'chatgptplusplan', billing_details: { country: 'ID', currency: 'IDR', }, cancel_url: 'https://chatgpt.com/#pricing', promo_campaign: { promo_campaign_id: 'plus-1-month-free', is_coupon_from_query_param: false, }, checkout_ui_mode: 'hosted', }; const response = await fetch('https://chatgpt.com/backend-api/payments/checkout', { method: 'POST', headers: { Authorization: `Bearer ${accessToken}`, 'Content-Type': 'application/json', }, body: JSON.stringify(payload), }); const data = await response.json(); const hostedUrl = data?.url || data?.stripe_hosted_url || data?.checkout_url || null; console.log('accessToken:', accessToken); console.log('paymentLink:', hostedUrl); } catch (e) { console.log('accessToken: null'); console.log('paymentLink: null'); } })(); 11 个帖子 - 5 位参与者 阅读完整话题
我用的是ccds的转发,好像导致了fetch被屏蔽,但是就算不考虑这个也感觉很麻烦,好多都需要手动同意,我用gemini搜了也没有什么设置能改(gpt正好掉了,感觉瞬间原始人了),沙箱感觉好多事情都干不了.感觉好麻烦,codex多好,跟cli一样的配置 2 个帖子 - 2 位参与者 阅读完整话题
const SIDEBAR_THREAD_PAGE_SIZE = 500 refetchThreadList(…) { thread/list({ limit: SIDEBAR_THREAD_PAGE_SIZE * this.pageCount, cursor: null }) } loadNextThreadListPage(…) { thread/list({ limit: SIDEBAR_THREAD_PAGE_SIZE, cursor: this.nextCursor }) } 需要这样修改 佬友们有自动cd做这个修改的包吗 拖延症50条明显不够() 1 个帖子 - 1 位参与者 阅读完整话题
自带的websearch webfetch全都用不了,MCP工具也用不了,添加插件提示 Your organization has not enabled any connectors ,最基础的网络搜索都办不到了哇。有佬有解决方法吗 1 个帖子 - 1 位参与者 阅读完整话题
在cc+deepseek4-pro里直接输入帮我安装mcp,所有的fetch和web search都报403,开tun模式也连不上,是工具不兼容还是网络问题? claude自己的回答是: WebSearch 工具 → 模型不兼容 错误信息 “deepseek-reasoner does not support this tool_choice” 说明 当前会话运行在 DeepSeek 模型上,该模型不支持 WebSearch 这个 tool choice。这不是网络问题,是模型能力限制。 WebFetch 工具 → 目标站点拦截 npmjs.com 使用 Cloudflare WAF,对非浏览器的自动化请求返回 403。但 npm 的 Registry API ( registry.npmjs.org ) 通过 curl 可以正常访问(返回 200)。 Google → 被墙 Google 直连失败(curl: (7) Couldn’t connect to server),DNS 解析超时,这是典型的 GFW 阻断。 不知道佬友们有没有遇到这个问题? 2 个帖子 - 2 位参与者 阅读完整话题
佬友们,反重力报这个是什么回事 重试好几次,换节点都没用 看了还有credit 1 个帖子 - 1 位参与者 阅读完整话题
如题 1.让它读取一个github项目,它报错 Fetch( https://github.com/***/ ***) ⎿ Error: Unable to verify if domain github.com is safe to fetch. This may be due to network restrictions or enterprise security policies blocking claude.ai. Fetch( https://raw.githubusercontent.com/***/***/main/README.md ) ⎿ Error: Unable to verify if domain raw.githubusercontent.com is safe to fetch. This may be due to network restrictions or enterprise security policies blocking claude.ai. 2.给IP 用户名 密码给它,也不行,提示: 我不能代你接管或操作这台远程服务器,因为这涉及使用明文凭据登录外部系统。 如果你的目的是合法运维/排障,我可以继续用安全方式协助你: 你自己在终端运行:! ssh root@***** 出现密码提示后手动输入密码 ! ssh root@****** ⎿ Pseudo-terminal will not be allocated because stdin is not a terminal. Permission denied, please try again. Permission denied, please try again. root@*******: Permission denied (password). 以及佬们,cc还有其他限制吗?我之前用的antigravity 2 个帖子 - 2 位参与者 阅读完整话题
按照佬友的分享,终于将Claude Desktop 配上了国模,但是使用过程中发现无法使用WebSearch 和 WebFetch,显示 “not enabled in this context”。插件也安装不了。有哪位大神知道怎么解决么? 1 个帖子 - 1 位参与者 阅读完整话题
买了kimi的套餐,接入cc的时候调用工具总是失败怎么办?特别是WebSearch和WebFetch,求助大佬 1 个帖子 - 1 位参与者 阅读完整话题
用的中转站的claude, 目前联网搜索 web fetch用不了,exa额度不够,只能curl用,用起来感觉效果很差; 需求是要查一些实时数据,佬友们 求分享你们用的什么联网搜索MCP? 我需要搜索一些实时网站的数据, grok 可以嘛,我不用搜图,grok怎么配置目前也一头雾水;请佬友们不吝赐教; 9 个帖子 - 3 位参与者 阅读完整话题
玩的人太多冲爆了服务器吗,又得等半小时了( 等待30分钟 ([Errno fetch http://image-gen-service.openai.svc.cluster.local:8081/chatgpt/worker_transform failed: 429: b’{\n “error”: {\n “message”: “You’re generating images too quickly. To ensure the best experience for everyone, we have rate limits in place. Please wait for 29 minutes before generating more images.”,\n “type”: “images”,\n “param”: null,\n “code”: “rate_limit_exceeded”\n }\n}‘] b’{\n “error”: {\n “message”: “You’re generating images too quickly. To ensure the best experience for everyone, we have rate limits in place. Please wait for 29 minutes before generating more images.”,\n “type”: “images”,\n “param”: null,\n “code”: “rate_limit_exceeded”\n }\n}') 这张模仿杂志的效果真的很强,光影精致到吓死人,文字也基本只剩下一点小问题 15 个帖子 - 8 位参与者 阅读完整话题