V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  refear99  ›  全部回复第 1 页 / 共 21 页
回复总数  418
1  2  3  4  5  6  7  8  9  10 ... 21  
13 小时 45 分钟前
回复了 zhuhaohenry 创建的主题 问与答 codex 可以一个账号两台机器同时使用吗
4 个都行,但是注意最好用同一个梯,同时要注意 ip 是否干净,最好自建
5 天前
回复了 lurenjiauser 创建的主题 OpenAI 感觉 5.6 似乎没有惊艳到什么程度啊?
5.5 后期有一个能力很惊艳,设计图直接粘贴给它,基本能还原 95%,而且切图都很精准
5 天前
回复了 apollo007 创建的主题 问与答 一个严肃的话题:人如何活久点?
@frankkly 确实 天赋异禀 不然也干不了这活儿啊哈哈
5 天前
回复了 apollo007 创建的主题 问与答 一个严肃的话题:人如何活久点?
50 牛子就废了,60 可能就穿尿不湿了,活那么久干什么
早过时了吧,superpowers 是指导之前那种早期 agent 的
现在装到 cc 和 codex 里反而会影响他们设计的工作流
想到一句话,如果你不知道 gpt 是干什么的你就不需要它,同理,如果你不能自己学 ai 开发,你就干不了这行
听起来女方家底雄厚,那确实按条件来说你配不上他,即使你在上海年薪百万也不够。她说的没什么大问题,而且这个集美明显看不上你,你就别 gui 了
7 天前
回复了 gitnot 创建的主题 OpenAI 正价跨区订阅 GPT PRO 会被封号吗?
还要看梯子 ip 是否干净
7 天前
回复了 tty0 创建的主题 生活 你有没有那样一瞬间, 觉得自己老了?
现在是流出来的
那如果一个 3 万月薪的,岂不是要自己出一万多交社保公积金
6 月 30 日
回复了 codermz 创建的主题 Windows WSL Containers 有老哥用上了吗?
为什么要折磨自己用 win 开发
@han0101 移动宽带影响还是很大的吧,用过一阵子太不稳定了了
6 月 29 日
回复了 WuLiSenSen 创建的主题 程序员 codex 比 claude code 更流行了吗?
唯有一个字:善
有 codex 也不贵,为什么要花钱买国产答辩?
渠道货一般正常的,你确认收货后,商家会给你更新一次激活时间和保修时间
6 月 28 日
回复了 mfsw 创建的主题 OpenAI skills,真的重要嘛?大家来讨论下吧。
通用开发完全不需要,特别是在用 codex 的情况下,codex 的 agent 自带的提示词和工作流优于任何目前的通用 skill

但是公司内部流程是需要的,比如下面是一个平安保险 pdf 的查询 skill

```
---
name: pingan-health-pdf
description: Look up Ping An Health Insurance public disclosure PDF material URLs by product name and return JSON data. Use when a user asks for 平安健康险 / 平安健康保险 product PDFs such as 产品条款, 费率表, 产品说明书, 特定清单, 现金价值表, 合同条款, or public disclosure materials by product name.
---

# Ping An Health PDF Lookup

## Goal

Given a Ping An Health Insurance product name, find public disclosure material URLs from each matched product's `contentReference` JSON. Search both product pools by default:

- 在售保险产品: `12105675798371923550`
- 停售保险产品: `14411518807585587486`

Known material keys:

- `productTerm`: 产品条款
- `rate`: 产品费率表
- `instructions`: 产品说明书
- `specialList`: 产品特定清单
- `cashValue`: 产品现金价值表

Return JSON only. Do not summarize as prose unless the user explicitly asks for explanation.

## Workflow

1. Query both tags using the product name.
2. For each matched product, read `contentView.contentReference`.
3. Fetch the `contentReference` URL; it returns JSON containing PDF/material entries.
4. Normalize every non-empty material entry into `materials[]`.
5. Return exactly one JSON object with a top-level `data` field.
6. If no exact result is found, retry with a shorter title fragment. If still none, return `{"data":[]}`.

## Product Query

Endpoint:

```text
POST https://mcore.health.pingan.com/bff/content/info/queryHistoryVersionList
```

Headers:

```text
content-type: application/json
origin: https://health.pingan.com
referer: https://health.pingan.com/
```

Body template:

```json
{
"pageSize": 10,
"pageNo": 1,
"tagId": "<TAG_ID>",
"type": 7,
"leaf": true,
"title": "<PRODUCT_NAME>"
}
```

Important response fields:

- `data.data[].productCode`
- `data.data[].onSaleAt`
- `data.data[].offSaleAt`
- `data.data[].productLevelCode`
- `data.data[].contentView.title`
- `data.data[].contentView.publishedAt`
- `data.data[].contentView.contentReference`
- `data.data[].contentView.contentContentTags[].tag.name`

## Output Format

Return exactly one valid JSON object:

```json
{
"data": [
{
"title": "产品名称",
"product_code": "产品代码",
"product_level_code": "产品分级",
"on_sale_at": "开售时间",
"off_sale_at": "停售时间",
"published_at": "发布时间",
"status": ["在售保险产品"],
"content_reference": "contentReference URL",
"materials": [
{
"key": "productTerm",
"label": "产品条款",
"filename": "文件名",
"url": "PDF URL",
"raw": {}
}
]
}
]
}
```

Output rules:

- Output JSON only.
- Do not wrap the JSON in Markdown fences.
- Do not add explanatory prose before or after the JSON.
- `data` is always an array.
- `materials` is always an array.
- Include every non-empty material key and every file entry.
- Use the Chinese label for known material keys; preserve unknown keys with `label` equal to the key.
- For object entries, set `filename` from `filename`, `name`, or the label. Set `url` from `url` or `link`, or empty string.
- For non-object entries, set `filename` to the label, `url` to the string value, and `raw` to the original value.

## Python Option

Use this when Python 3 is available. It only uses the Python standard library and prints the required JSON shape.

```bash
PRODUCT_NAME='平安互联网全家福住院医疗保险' python3 - <<'PY'
import json
import os
import urllib.request

```
6 月 28 日
回复了 hansonl 创建的主题 Codex gpt 写前端页面很丑怎么办?
@trn4
@mon6912640

那有没有什么修改优化意见呢?
6 月 26 日
回复了 hansonl 创建的主题 Codex gpt 写前端页面很丑怎么办?
https://dingxx.com

全都是 codex 写的
6 月 24 日
回复了 adz2k 创建的主题 iPad 你们的 iPad 现在有多鸡肋
玩 ps5 摆旁边看攻略用
1  2  3  4  5  6  7  8  9  10 ... 21  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   954 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 19:34 · PVG 03:34 · LAX 12:34 · JFK 15:34
♥ Do have faith in what you're doing.