linkfox-eureka-description-translated
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseEureka Patent Description Translation
Eureka专利说明书翻译
This skill guides you on how to retrieve translated patent description (specification) text via the Eureka patent data platform. It supports translation into Chinese, English, or Japanese, and can look up patents by patent ID or publication number.
本技能将指导您如何通过Eureka专利数据平台获取翻译后的专利说明书(描述)文本。它支持翻译成中文、英文或日文,并可通过专利ID或公开号查询专利。
Core Concepts
核心概念
A patent description (also called "specification") is the full technical text of a patent document. This tool fetches the translated version of that text from the Eureka patent database, supporting three target languages: Chinese (), English (), and Japanese ().
cnenjpWhen a patent's description is unavailable, the tool can optionally substitute it with a description from a patent family member (a related patent filed in another jurisdiction covering the same invention).
专利说明书(也称为“specification”)是专利文档的完整技术文本。本工具从Eureka专利数据库中获取该文本的翻译版本,支持三种目标语言:中文()、英文()、日文()。
cnenjp当某一专利的说明书不可用时,工具可选择用同族专利(在其他司法管辖区提交的涵盖同一发明的相关专利)的说明书替代。
Parameter Guide
参数指南
| Parameter | Type | Required | Description |
|---|---|---|---|
| patentId | string | Conditionally | Patent ID. At least one of |
| patentNumber | string | Conditionally | Publication (announcement) number. At least one of |
| lang | string | No | Target translation language. Supported values: |
| replaceByRelated | integer | No | Whether to substitute with a patent family member's description when the original is unavailable. |
| 参数名 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| patentId | string | 可选(需满足条件) | 专利ID。必须提供 |
| patentNumber | string | 可选(需满足条件) | 公开(公告)号。必须提供 |
| lang | string | 否 | 目标翻译语言。支持的值: |
| replaceByRelated | integer | 否 | 当原专利说明书不可用时,是否用同族专利的说明书替代。 |
Key Rules
关键规则
- At least one identifier required: Either or
patentIdmust be provided. If the user gives a publication number like "US10123456B2", usepatentNumber. If they give a numeric patent ID, usepatentNumber.patentId - Priority: When both identifiers are supplied, takes precedence.
patentId - Batch queries: Up to 100 patents can be queried at once by passing comma-separated values.
- Default language: If the user does not specify a language, default to (English).
en
- 至少需要一个标识符:必须提供或
patentId中的一个。如果用户提供类似“US10123456B2”的公开号,使用patentNumber;如果提供数字专利ID,使用patentNumber。patentId - 优先级:当同时提供两个标识符时,优先级更高。
patentId - 批量查询:通过传递逗号分隔的值,一次最多可查询100个专利。
- 默认语言:如果用户未指定语言,默认使用(英文)。
en
Response Fields
响应字段
| Field | Description |
|---|---|
| total | Number of patent records returned |
| data | Array of patent objects (see below) |
| data[].patentId | Internal patent ID |
| data[].pn | Publication (announcement) number |
| data[].description | Translated patent description text |
| 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[].description | 翻译后的专利说明书文本 |
| data[].pnRelated | 替代同族专利的公开号(仅当使用同族替代时显示) |
| costToken | 本次请求消耗的Token数量 |
Usage Examples
使用示例
1. Get English translation of a patent description by publication number
Get the English description for patent US10123456B2.Parameters: ,
patentNumber = "US10123456B2"lang = "en"2. Get Chinese translation of a patent description by patent ID
Get the Chinese translation of description for patent ID abc123def.Parameters: ,
patentId = "abc123def"lang = "cn"3. Batch query with family member fallback
Get English descriptions for US10123456B2, EP3456789A1, CN112345678A. Use family patents if unavailable.Parameters: , ,
patentNumber = "US10123456B2,EP3456789A1,CN112345678A"lang = "en"replaceByRelated = 14. Japanese translation of a specific patent
Translate the description of JP2021012345A to Japanese.Parameters: ,
patentNumber = "JP2021012345A"lang = "jp"5. Chinese translation with family fallback
查询专利US10123456B2的中文说明书,如果没有就用同族专利替代。Parameters: , ,
patentNumber = "US10123456B2"lang = "cn"replaceByRelated = 11. 通过公开号获取专利说明书的英文翻译
Get the English description for patent US10123456B2.参数:,
patentNumber = "US10123456B2"lang = "en"2. 通过专利ID获取专利说明书的中文翻译
Get the Chinese translation of description for patent ID abc123def.参数:,
patentId = "abc123def"lang = "cn"3. 批量查询并启用同族专利 fallback
Get English descriptions for US10123456B2, EP3456789A1, CN112345678A. Use family patents if unavailable.参数:, ,
patentNumber = "US10123456B2,EP3456789A1,CN112345678A"lang = "en"replaceByRelated = 14. 特定专利的日文翻译
Translate the description of JP2021012345A to Japanese.参数:,
patentNumber = "JP2021012345A"lang = "jp"5. 带同族 fallback 的中文翻译
查询专利US10123456B2的中文说明书,如果没有就用同族专利替代。参数:, ,
patentNumber = "US10123456B2"lang = "cn"replaceByRelated = 1Display Rules
展示规则
- Present the translated text clearly: Show the patent description text directly. For long descriptions, present a summary or the first section and inform the user the full text is available.
- Identify substitutions: When is present in the response, clearly inform the user that the description was sourced from a family member patent and show the related publication number.
pnRelated - Batch results: When multiple patents are returned, present them in a structured list with clear separation between each patent's description.
- Error handling: When a query fails, explain the reason based on the response and suggest checking the patent ID or publication number for correctness.
- No fabrication: Never invent or paraphrase patent text. Only display what the API returns.
- 清晰呈现翻译文本:直接展示专利说明书文本。对于较长的说明书,呈现摘要或第一部分,并告知用户完整文本可用。
- 标记替代来源:当响应中包含时,明确告知用户该说明书来源于同族专利,并展示相关公开号。
pnRelated - 批量结果展示:当返回多个专利时,以结构化列表呈现,清晰分隔每个专利的说明书。
- 错误处理:当查询失败时,根据响应解释原因,并建议检查专利ID或公开号是否正确。
- 禁止编造内容:切勿编造或改写专利文本,仅展示API返回的内容。
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/eureka_description_translated.py本工具调用LinkFox工具网关API。调用规范、请求参数和响应结构详见。您也可以直接执行来运行查询。
references/api.mdscripts/eureka_description_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 - Description only: This tool returns only the description/specification text, not titles, abstracts, or claims.
- Family replacement is optional: The substitute family patent description is only provided when explicitly requested via .
replaceByRelated = 1 - Batch limit: A maximum of 100 patents per request.
- 必须提供标识符:必须提供专利ID或公开号中的至少一个;本工具不支持基于关键词的搜索。
- 翻译语言限制:仅支持中文()、英文(
cn)、日文(en)。jp - 仅返回说明书:本工具仅返回说明书/规范文本,不返回标题、摘要或权利要求书。
- 同族替代为可选功能:仅当通过明确请求时,才会提供同族专利的说明书替代版本。
replaceByRelated = 1 - 批量查询限制:每次请求最多支持100个专利。
User Expression & Scenario Quick Reference
用户表述与场景速查
Applicable -- Patent description/specification translation queries:
| User Says | Scenario |
|---|---|
| "Translate this patent description to English" | Single patent translation |
| "I need the Chinese version of patent US10123456" | Specific language translation |
| "Get me the specification text for these patents" | Batch patent description retrieval |
| "What does patent CN112345678A describe?" | Patent description lookup |
| "Show me the Japanese translation of this patent's full text" | Japanese translation |
| "The description is missing, can you try a family member?" | Family member fallback |
Not applicable -- Needs beyond patent description translation:
- Patent search or discovery (finding patents by keyword/topic)
- Patent claim analysis or claim chart generation
- Patent legal status or prosecution history
- Patent citation or reference analysis
- Patent portfolio analytics or statistics
Boundary -- Edge cases:
- If the user asks for "patent full text" without specifying, clarify whether they want description, claims, or abstract.
- If the user provides more than 100 patents, split into multiple batches.
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, visit LinkFox Skills.
适用场景——专利说明书/规范翻译查询:
| 用户表述 | 场景 |
|---|---|
| "Translate this patent description to English" | 单条专利翻译 |
| "I need the Chinese version of patent US10123456" | 指定语言翻译 |
| "Get me the specification text for these patents" | 批量专利说明书获取 |
| "What does patent CN112345678A describe?" | 专利说明书查询 |
| "Show me the Japanese translation of this patent's full text" | 日文翻译 |
| "The description is missing, can you try a family member?" | 同族专利 fallback |
不适用场景——超出专利说明书翻译的需求:
- 专利搜索或发现(通过关键词/主题查找专利)
- 专利权利要求分析或权利要求图生成
- 专利法律状态或审查历史
- 专利引用或参考分析
- 专利组合分析或统计
边界案例:
- 如果用户要求“专利全文”但未明确说明,需确认其是否需要说明书、权利要求书或摘要。
- 如果用户提供超过100个专利,需拆分为多个批次查询。
反馈:
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
- 本技能描述的功能或用途与实际行为不符
- 本技能的结果不符合用户意图
- 用户表达了对本技能的不满或赞扬
- 任何您认为可以改进的内容
按照中的指定方式调用反馈API,请勿中断用户流程。
references/api.md如需更多高质量、专业的跨境电商技能,请访问 LinkFox Skills。