可以出一个方案让阅读的人付费之类的,花这么多算力出的结果不应该静悄悄的躲在数据库里@chat01.ai @bandaot ;
ps
认可这个东西价值的大家来讨论一下,不认可的可以直接用别的产品噢
看这个质量,似乎也就是一个搜索引擎
404啊 你跑了什么
你这个为什么没有研究过程,上面那个美食推荐有
官方说可以推荐购物之类的,估计是国内没有接口可以给chatgpt用,要是有淘宝数据应该出的结论也不会差
如果是企业/个人 重要采购可以提供依据
前端可以优化一下链接的显示,整篇文章里,如果有链接直接就在文中显示出来的,很不方便阅读,先放一个优化链接显示脚本在这![]()
// ==UserScript==
// @name Widen & Modernize QnA Cards
// @version 1.3
// @description 让"问题"和"思考"卡片在屏幕上更宽,并增添一些现代化风格,处理链接
// @match *://chat01.ai/*
// @match *://openai01.net/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
// 创建并立即插入自定义 CSS,防止闪烁
const style = document.createElement('style');
style.innerHTML = `
/* 整体背景与字体设置 */
body {
background-color: #f5f7fa !important; /* 柔和浅灰作为背景 */
color: #333 !important; /* 深灰字体,适合浅色背景 */
font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
line-height: 1.6 !important;
}
/* 覆盖某些固定区域可能带来的深色边框或背景 */
header, footer {
background-color: #ffffff !important;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important; /* 轻微投影 */
border: none !important;
}
/* 调宽主要容器以利用屏幕空间,让页面更宽一些 */
.max-w-4xl,
.prose,
.mx-auto,
.container {
max-width: 95% !important; /* 从原先约 60-70% 改到 95% */
}
/* 优化标题、段落、列表排版 */
.prose h1, .prose h2, .prose h3, .prose h4 {
font-weight: 600 !important;
margin-top: 1.2em !important;
margin-bottom: 0.8em !important;
}
.prose h1 {
font-size: 1.8rem !important;
}
.prose p {
margin-bottom: 1em !important;
font-size: 1rem !important;
}
.prose ul {
list-style-type: disc !important;
margin-left: 1.5rem !important;
}
.prose li {
margin-bottom: 0.5em !important;
}
.prose a {
color: #2563eb !important; /* 适度蓝色 */
text-decoration: none !important;
}
.prose a:hover {
text-decoration: underline !important;
}
/* 让常见的卡片块 (.mb-8 等) 更像卡片:加白底、加阴影、圆角 */
/* 注意:mb-8 这个类名在页面里很常用,如果覆盖范围太大,可自行更换为更精确的选择器 */
.mb-8 {
background: #ffffff !important;
border-radius: 8px !important;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
padding: 20px !important;
margin-bottom: 2rem !important;
}
/* 适度加大卡片之间的间距,让视觉更清爽 */
.mb-8 + .mb-8 {
margin-top: 2rem !important;
}
/* 隐藏特定的链接 */
a.text-orange-500, a[rel*="nofollow"] {
font-size: 0 !important;
vertical-align: middle !important;
position: relative !important;
display: inline-block !important;
width: 6px !important;
height: 6px !important;
border-radius: 50% !important;
background-color: #aaaaaa !important;
margin: 0 2px !important;
opacity: 0.7 !important;
cursor: pointer !important;
}
a.text-orange-500:hover, a[rel*="nofollow"]:hover {
opacity: 1 !important;
background-color: #666666 !important;
}
a.text-orange-500:hover:before, a[rel*="nofollow"]:hover:before {
content: attr(href);
position: absolute !important;
background: rgba(0, 0, 0, 0.7) !important;
color: white !important;
padding: 2px 6px !important;
border-radius: 4px !important;
font-size: 12px !important;
white-space: nowrap !important;
bottom: 100% !important;
left: 50% !important;
transform: translateX(-50%) !important;
margin-bottom: 5px !important;
z-index: 10 !important;
max-width: 300px !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
}
/* 链接圆形角标样式 - 使用更加柔和的颜色 */
.link-badge {
display: inline-block !important;
position: relative !important;
width: 6px !important;
height: 6px !important;
border-radius: 50% !important;
background-color: #aaaaaa !important; /* 改为柔和的灰色 */
margin-left: 2px !important;
vertical-align: super !important;
cursor: pointer !important;
opacity: 0.7 !important; /* 降低不透明度使其更加柔和 */
}
.link-badge:hover {
opacity: 1 !important;
background-color: #666666 !important; /* 悬停时加深颜色 */
}
.link-badge:hover:before {
content: attr(data-domain) !important;
position: absolute !important;
background: rgba(0, 0, 0, 0.7) !important;
color: white !important;
padding: 2px 6px !important;
border-radius: 4px !important;
font-size: 12px !important;
white-space: nowrap !important;
bottom: 100% !important;
left: 50% !important;
transform: translateX(-50%) !important;
margin-bottom: 5px !important;
z-index: 10 !important;
}
`;
// 在文档开始时就尽快插入样式
if (document.head) {
document.head.appendChild(style);
} else {
// 如果head还不存在,等待DOM加载
document.addEventListener('DOMContentLoaded', function() {
document.head.appendChild(style);
});
}
// 处理链接的函数 - 备用方案,以防CSS方法不起作用
function processLinks() {
// 寻找所有具有特定类或属性的链接
const links = document.querySelectorAll('a.text-orange-500, a[rel*="nofollow"]');
links.forEach(link => {
// 检查链接是否已经处理过
if (link.getAttribute('data-processed')) return;
link.setAttribute('data-processed', 'true');
// 获取链接域名
let domain = '';
try {
domain = new URL(link.href).hostname;
} catch (e) {
domain = link.textContent;
}
// 保存原始链接的href
const originalHref = link.href;
// 隐藏链接文本
link.style.fontSize = '0';
link.style.display = 'inline-block';
link.style.width = '6px';
link.style.height = '6px';
link.style.borderRadius = '50%';
link.style.backgroundColor = '#aaaaaa';
link.style.opacity = '0.7';
link.style.verticalAlign = 'middle';
link.style.margin = '0 2px';
// 添加悬停效果
link.addEventListener('mouseover', function() {
this.style.opacity = '1';
this.style.backgroundColor = '#666666';
// 创建或更新提示元素
let tooltip = this.querySelector('.link-tooltip');
if (!tooltip) {
tooltip = document.createElement('span');
tooltip.className = 'link-tooltip';
tooltip.style.position = 'absolute';
tooltip.style.backgroundColor = 'rgba(0, 0, 0, 0.7)';
tooltip.style.color = 'white';
tooltip.style.padding = '2px 6px';
tooltip.style.borderRadius = '4px';
tooltip.style.fontSize = '12px';
tooltip.style.whiteSpace = 'nowrap';
tooltip.style.bottom = '100%';
tooltip.style.left = '50%';
tooltip.style.transform = 'translateX(-50%)';
tooltip.style.marginBottom = '5px';
tooltip.style.zIndex = '10';
tooltip.style.maxWidth = '300px';
tooltip.style.overflow = 'hidden';
tooltip.style.textOverflow = 'ellipsis';
tooltip.textContent = domain;
this.appendChild(tooltip);
}
});
link.addEventListener('mouseout', function() {
this.style.opacity = '0.7';
this.style.backgroundColor = '#aaaaaa';
// 移除提示元素
const tooltip = this.querySelector('.link-tooltip');
if (tooltip) {
this.removeChild(tooltip);
}
});
});
}
// 页面内容加载后立即处理链接
document.addEventListener('DOMContentLoaded', function() {
// 立即运行一次
processLinks();
// 创建一个MutationObserver来监视DOM变化
const observer = new MutationObserver(function(mutations) {
processLinks();
});
// 开始观察文档的变化
observer.observe(document.body, {
childList: true,
subtree: true
});
});
})();
金主说要等稳定
有点像降智的一般结果 没有过程,就是总结网页结果
深层研究不是一步步的推进吗
如果只是搜索总结,是不是有点牵强
没适配
你可以改改,我主要就是改那个链接显示,太干扰阅读了,满屏幕的链接
研究过程是昨晚新增的功能,所以之前的没有
这个不是降智了,是第一版没适配输出研究过程,现在是昨晚重构的第二版,可以流式展示研究过程和最终研究时间了,稳定性也提高了一些
单独分区付费就不必了,我们加个分类按钮就行
重要的采购价什么的数据通常也抓取不到 ![]()
如果是强势甲方可以让乙方直接出可识别的数据再聚和,或者人肉收集一下
需要一个非公开的分享功能。不希望问题上发现页公开,但希望能够发链接到微信里打开。
你这问题有什么意义呢
好的,老板
测了个 SUV电动车的调研