linkfox-zhihuiya-abstract-translated
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseZhihuiya Patent Abstract (Translated)
智慧芽(PatSnap)专利摘要(翻译版)
This skill guides you on how to retrieve translated patent titles and abstracts from the Zhihuiya (PatSnap) patent database, supporting Chinese, English, and Japanese translations.
本技能将指导您如何从智慧芽(PatSnap)专利数据库获取翻译后的专利标题和摘要,支持中、英、日三种语言翻译。
Core Concepts
核心概念
Zhihuiya (PatSnap) is a leading patent intelligence platform. This tool queries its database to return translated titles and abstracts for one or more patents. You can look up patents by patent ID or publication (announcement) number, and receive translations in Chinese, English, or Japanese.
Patent identification: Each patent can be identified by either a (internal Zhihuiya identifier) or a (public publication/announcement number such as or ). If both are provided, the patent ID takes priority.
patentIdpatentNumberUS20200012345A1CN112345678AFamily patent fallback: When the original patent has no abstract available, you can optionally substitute the abstract from a related family patent by enabling the replacement option.
智慧芽(PatSnap)是领先的专利情报平台。本工具可查询其数据库,返回一项或多项专利的翻译后标题和摘要。您可以通过patent ID(专利ID)或公开(公告)号查询专利,并获取中、英、日文的翻译结果。
专利标识:每项专利可通过(智慧芽内部专利ID)或(公开/公告号,例如或)进行标识。若同时提供两者,将优先使用patentId。
patentIdpatentNumberUS20200012345A1CN112345678A同族专利 fallback:当原专利无摘要可用时,您可启用替换选项,选择使用相关同族专利的摘要替代。
Parameter Guide
参数指南
| Parameter | Type | Required | Description |
|---|---|---|---|
| patentId | string | At least one of patentId or patentNumber | Zhihuiya internal patent ID. Separate multiple IDs with commas. Max length 60,000 characters. |
| patentNumber | string | At least one of patentId or patentNumber | Publication (announcement) number. Separate multiple numbers with commas. Max length 60,000 characters. |
| replaceByRelated | integer | No | Whether to substitute a family patent abstract when the original is unavailable. |
| lang | string | No | Target translation language. |
| 参数 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| patentId | string | patentId或patentNumber至少填一项 | 智慧芽内部专利ID。多个ID用逗号分隔。最大长度60,000字符。 |
| patentNumber | string | patentId或patentNumber至少填一项 | 公开(公告)号。多个编号用逗号分隔。最大长度60,000字符。 |
| replaceByRelated | integer | 否 | 当原专利摘要不可用时,是否使用同族专利摘要替代。 |
| lang | string | 否 | 目标翻译语言。 |
Key Rules
关键规则
- At least one identifier is required: You must provide either or
patentId(or both). If both are supplied,patentNumbertakes priority.patentId - Batch queries: Multiple patents can be queried at once by separating values with commas.
- Default language is English: When the user does not specify a language, use .
en - Family fallback: Set to
replaceByRelatedonly when the user explicitly wants a substitute abstract from a family patent if the original is missing.1
- 至少需提供一个标识:必须提供或
patentId(或两者都提供)。若同时提供,patentNumber优先级更高。patentId - 批量查询:可通过逗号分隔多个值,一次性查询多项专利。
- 默认语言为英文:当用户未指定语言时,使用。
en - 同族专利 fallback:仅当用户明确要求原专利摘要缺失时使用同族专利替代,才将设为
replaceByRelated。1
Response Fields
响应字段
| Field | Description |
|---|---|
| total | Number of patent records returned |
| data | Array of patent objects (see below) |
| data[].patentId | Zhihuiya internal patent ID |
| data[].pn | Publication (announcement) number |
| data[].title | Translated patent title |
| data[].abstractText | Translated patent abstract |
| data[].pnRelated | Publication number of the substitute family patent (only present when family replacement was used) |
| costToken | Tokens consumed by this request |
| 字段 | 描述 |
|---|---|
| total | 返回的专利记录数量 |
| data | 专利对象数组(详见下文) |
| data[].patentId | 智慧芽内部专利ID |
| data[].pn | 公开(公告)号 |
| data[].title | 翻译后的专利标题 |
| data[].abstractText | 翻译后的专利摘要 |
| data[].pnRelated | 替代同族专利的公开号(仅当使用同族专利替换时显示) |
| costToken | 本次请求消耗的Token数量 |
Usage Examples
使用示例
1. Translate a single patent abstract to English by publication number
Look up patent number US20200012345A1 and give me the English abstract.Parameters: ,
patentNumber = "US20200012345A1"lang = "en"2. Translate multiple patents to Chinese
Get the Chinese translation of abstracts for patents CN112345678A and US20200067890A1.Parameters: ,
patentNumber = "CN112345678A,US20200067890A1"lang = "cn"3. Look up by patent ID with family fallback
Get the Japanese abstract for patent ID 12345678. If the abstract is unavailable, use a family patent instead.Parameters: , ,
patentId = "12345678"lang = "jp"replaceByRelated = 14. Batch query by patent IDs
Translate the titles and abstracts for these patent IDs: 111111, 222222, 333333.Parameters: ,
patentId = "111111,222222,333333"lang = "en"1. 通过公开号将单个专利摘要翻译为英文
Look up patent number US20200012345A1 and give me the English abstract.参数:,
patentNumber = "US20200012345A1"lang = "en"2. 将多项专利翻译为中文
Get the Chinese translation of abstracts for patents CN112345678A and US20200067890A1.参数:,
patentNumber = "CN112345678A,US20200067890A1"lang = "cn"3. 通过专利ID查询并启用同族专利 fallback
Get the Japanese abstract for patent ID 12345678. If the abstract is unavailable, use a family patent instead.参数:, ,
patentId = "12345678"lang = "jp"replaceByRelated = 14. 通过专利ID批量查询
Translate the titles and abstracts for these patent IDs: 111111, 222222, 333333.参数:,
patentId = "111111,222222,333333"lang = "en"Display Rules
展示规则
- Present data clearly: Show results in a well-structured table with patent number, title, and abstract.
- Indicate language: Mention the translation language in the output header so users know which language the results are in.
- Family patent notice: If is present in any result, explicitly inform the user that the abstract was sourced from a family patent and show the substitute publication number.
pnRelated - Long abstracts: For very long abstracts, display the full text without truncation so users can review the complete content.
- Error handling: When a query fails or returns no results, explain the likely cause (e.g., invalid patent number, patent not found in database) and suggest corrections.
- No subjective commentary: Present the translated text as-is without adding interpretation or legal analysis of the patent content.
- 清晰呈现数据:以结构清晰的表格展示结果,包含专利号、标题和摘要。
- 标注语言:在输出头部提及翻译语言,让用户明确结果的语言类型。
- 同族专利提示:若任何结果中包含,需明确告知用户该摘要来源于同族专利,并显示替代的公开号。
pnRelated - 长摘要处理:对于过长的摘要,完整显示全文,不进行截断,以便用户查看完整内容。
- 错误处理:当查询失败或无结果返回时,解释可能的原因(如无效专利号、数据库中未找到该专利)并给出修正建议。
- 无主观评论:原样呈现翻译文本,不添加对专利内容的解读或法律分析。
API Usage
API 使用说明
This tool calls the LinkFox tool gateway API. See for calling conventions, request parameters, and response structure. You can also execute directly to run queries.
references/api.mdscripts/zhihuiya_abstract_translated.py本工具调用LinkFox工具网关API。调用规范、请求参数和响应结构详见。您也可直接执行进行查询。
references/api.mdscripts/zhihuiya_abstract_translated.pyImportant Limitations
重要限制
- Identifier required: At least one of patent ID or publication number must be provided; the tool cannot perform keyword-based searches.
- Translation languages: Only Chinese (), English (
cn), and Japanese (en) are supported.jp - No full-text retrieval: This tool returns only titles and abstracts, not full patent claims or descriptions.
- Family replacement is optional: The substitute family patent abstract is only provided when explicitly requested via .
replaceByRelated = 1
- 需提供标识:必须提供patent ID或公开号中的至少一项;本工具不支持基于关键词的搜索。
- 翻译语言限制:仅支持中文()、英文(
cn)和日文(en)。jp - 无全文检索:本工具仅返回标题和摘要,不返回完整的专利权利要求书或说明书。
- 同族专利替换为可选功能:仅当通过明确请求时,才会提供同族专利的替代摘要。
replaceByRelated = 1
User Expression & Scenario Quick Reference
用户表述与场景速查
Applicable -- Patent abstract and title translation queries:
| User Says | Scenario |
|---|---|
| "Translate this patent abstract" | Single patent translation |
| "What does patent XX say / what is it about" | Abstract lookup |
| "Get the Chinese/Japanese version of this patent" | Specific language translation |
| "Look up the abstract for patent number XX" | Publication number lookup |
| "Translate these patents in batch" | Batch translation |
| "The abstract is missing, try a family patent" | Family patent fallback |
Not applicable -- Needs beyond abstract translation:
- Full patent text, claims, or description retrieval
- Patent search by keyword, classification, or applicant
- Patent legal status, citation analysis, or landscape reports
- Patent valuation or infringement analysis
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
- The functionality or purpose described in this skill does not match actual behavior
- The skill's results do not match the user's intent
- The user expresses dissatisfaction or praise about this skill
- Anything you believe could be improved
Call the feedback API as specified in . Do not interrupt the user's flow.
references/api.mdFor more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.
适用场景——专利摘要与标题翻译查询:
| 用户表述 | 场景 |
|---|---|
| "翻译这份专利摘要" | 单专利翻译 |
| "专利XX内容是什么/讲了什么" | 摘要查询 |
| "获取这份专利的中文/日文版本" | 指定语言翻译 |
| "查询专利号XX的摘要" | 公开号查询 |
| "批量翻译这些专利" | 批量翻译 |
| "摘要缺失,尝试用同族专利" | 同族专利 fallback |
不适用场景——超出摘要翻译的需求:
- 完整专利文本、权利要求书或说明书检索
- 通过关键词、分类或申请人进行专利搜索
- 专利法律状态、引用分析或态势报告
- 专利估值或侵权分析
反馈:
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
- 本技能描述的功能或用途与实际行为不符
- 技能结果不符合用户意图
- 用户表达对本技能的不满或赞扬
- 任何您认为可改进的内容
按照中的指定方式调用反馈API,请勿中断用户流程。
references/api.md如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills。