linkfox-eureka-abstract-translated

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Eureka Patent Abstract Translation

Eureka专利摘要翻译

This skill guides you on how to retrieve translated patent titles and abstracts from the Eureka patent data platform, supporting Chinese, English, and Japanese translations.
本技能将指导您如何从Eureka专利数据平台获取翻译后的专利标题和摘要,支持中文、英文和日文翻译。

Core Concepts

核心概念

Eureka is a professional patent data 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
patentId
(internal identifier) or a
patentNumber
(public publication/announcement number such as
US20200012345A1
or
CN112345678A
). If both are provided, the patent ID takes priority.
Family patent fallback: When the original patent has no abstract available, you can optionally substitute the abstract from a related family patent by setting
replaceByRelated
to
1
.
Eureka是一个专业的专利数据平台。本工具查询其数据库,返回一个或多个专利的翻译后标题和摘要。您可以通过patent ID(专利内部ID)公开(公告)号查询专利,并获取中文、英文或日文的翻译版本。
专利标识:每个专利可通过
patentId
(内部标识)或
patentNumber
(公开公告号,例如
US20200012345A1
CN112345678A
)进行标识。若同时提供两者,patentId优先生效。
同族专利备选方案:当原专利无摘要可用时,可通过将
replaceByRelated
设置为
1
,选择使用同族专利的摘要替代。

Parameter Guide

参数指南

ParameterTypeRequiredDescription
patentIdstringAt least one of patentId or patentNumberInternal patent ID. Separate multiple IDs with commas. Up to 100 patents per request.
patentNumberstringAt least one of patentId or patentNumberPublication (announcement) number. Separate multiple numbers with commas. Up to 100 patents per request.
replaceByRelatedintegerNoWhether to substitute a family patent abstract when the original is unavailable.
1
= yes,
0
= no. Default
0
.
langstringNoTarget translation language.
en
= English (default),
cn
= Chinese,
jp
= Japanese.
参数类型是否必填描述
patentIdstringpatentId或patentNumber至少填一项专利内部ID。多个ID用逗号分隔。每次请求最多支持100个专利。
patentNumberstringpatentId或patentNumber至少填一项公开(公告)号。多个编号用逗号分隔。每次请求最多支持100个专利。
replaceByRelatedinteger当原专利无摘要时,是否使用同族专利摘要替代。
1
=是,
0
=否。默认值为
0
langstring目标翻译语言。
en
=英文(默认),
cn
=中文,
jp
=日文。

Key Rules

关键规则

  1. At least one identifier is required: You must provide either
    patentId
    or
    patentNumber
    (or both). If both are supplied,
    patentId
    takes priority.
  2. Batch queries: Multiple patents can be queried at once by separating values with commas, up to 100 per request.
  3. Default language is English: When the user does not specify a language, use
    en
    .
  4. Family fallback: Set
    replaceByRelated
    to
    1
    only when the user explicitly wants a substitute abstract from a family patent if the original is missing.
  1. 必须提供至少一个标识:您必须提供
    patentId
    patentNumber
    (或两者都提供)。若同时提供,
    patentId
    优先生效。
  2. 批量查询:可通过逗号分隔多个值,一次性查询多个专利,每次请求最多支持100个。
  3. 默认语言为英文:当用户未指定语言时,使用
    en
  4. 同族专利备选:仅当用户明确要求原专利无摘要时使用同族专利摘要替代,才将
    replaceByRelated
    设置为
    1

Response Fields

响应字段

FieldDescription
totalNumber of patent records returned
dataArray of patent objects (see below)
data[].patentIdInternal patent ID
data[].pnPublication (announcement) number
data[].titleTranslated patent title
data[].abstractTextTranslated patent abstract
data[].pnRelatedPublication number of the substitute family patent (only present when family replacement was used)
costTokenTokens 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 = 1
4. Batch query by patent IDs
Translate the titles and abstracts for these patent IDs: 111111, 222222, 333333.
Parameters:
patentId = "111111,222222,333333"
,
lang = "en"
5. Translate to Chinese with family patent fallback enabled
查询专利CN112345678A的中文摘要,如果没有就用同族专利替代。
Parameters:
patentNumber = "CN112345678A"
,
lang = "cn"
,
replaceByRelated = 1
1. 通过公开号将单个专利摘要翻译成英文
查询公开号US20200012345A1的专利,给我英文摘要。
参数:
patentNumber = "US20200012345A1"
,
lang = "en"
2. 将多个专利翻译成中文
获取专利CN112345678A和US20200067890A1的摘要中文翻译版本。
参数:
patentNumber = "CN112345678A,US20200067890A1"
,
lang = "cn"
3. 通过专利ID查询并启用同族专利备选
获取专利ID 12345678的日文摘要。如果该摘要不可用,使用同族专利的摘要替代。
参数:
patentId = "12345678"
,
lang = "jp"
,
replaceByRelated = 1
4. 通过专利ID批量查询
翻译这些专利ID的标题和摘要:111111、222222、333333。
参数:
patentId = "111111,222222,333333"
,
lang = "en"
5. 翻译成中文并启用同族专利备选
查询专利CN112345678A的中文摘要,如果没有就用同族专利替代。
参数:
patentNumber = "CN112345678A"
,
lang = "cn"
,
replaceByRelated = 1

Display Rules

展示规则

  1. Present data clearly: Show results in a well-structured table with patent number, title, and abstract.
  2. Indicate language: Mention the translation language in the output header so users know which language the results are in.
  3. Family patent notice: If
    pnRelated
    is present in any result, explicitly inform the user that the abstract was sourced from a family patent and show the substitute publication number.
  4. Long abstracts: For very long abstracts, display the full text without truncation so users can review the complete content.
  5. 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.
  1. 清晰展示数据:将结果以结构清晰的表格形式展示,包含专利号、标题和摘要。
  2. 标注语言:在输出头部标注翻译语言,让用户明确结果的语言类型。
  3. 同族专利提示:若任何结果中包含
    pnRelated
    ,需明确告知用户该摘要来源于同族专利,并显示替代的公开号。
  4. 长摘要处理:对于较长的摘要,完整展示全文,不进行截断,以便用户查看完整内容。
  5. 错误处理:当查询失败或无结果返回时,说明可能的原因(例如:无效专利号、数据库中未找到该专利)并给出修正建议。

API Usage

API使用说明

This tool calls the LinkFox tool gateway API. See
references/api.md
for calling conventions, request parameters, and response structure. You can also execute
scripts/eureka_abstract_translated.py
directly to run queries.
本工具调用LinkFox工具网关API。调用规范、请求参数和响应结构详见
references/api.md
。您也可以直接执行
scripts/eureka_abstract_translated.py
来运行查询。

Important 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 (
    cn
    ), English (
    en
    ), and Japanese (
    jp
    ) are supported.
  • 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
    .
  • Batch limit: A maximum of 100 patents per request.
  • 必须提供标识:必须提供patent ID或公开号中的至少一项;本工具不支持基于关键词的搜索。
  • 翻译语言限制:仅支持中文(
    cn
    )、英文(
    en
    )和日文(
    jp
    )。
  • 不支持全文检索:本工具仅返回标题和摘要,不返回完整的专利权利要求书或说明书。
  • 同族专利替代为可选功能:仅当通过
    replaceByRelated = 1
    明确请求时,才会提供同族专利的替代摘要。
  • 批量限制:每次请求最多支持100个专利。

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable -- Patent abstract and title translation queries:
User SaysScenario
"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
Boundary -- Edge cases:
  • If the user asks for "patent content" without specifying which part, default to abstract translation and inform them about claim/description tools.
  • 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:
  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved
Call the feedback API as specified in
references/api.md
. Do not interrupt the user's flow.

For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.
适用场景 -- 专利摘要与标题翻译查询:
用户表述场景
"翻译这个专利摘要"单个专利翻译
"专利XX讲了什么/是关于什么的"摘要查询
"获取这个专利的中文/日文版本"指定语言翻译
"查询专利号XX的摘要"公开号查询
"批量翻译这些专利"批量翻译
"摘要缺失了,试试同族专利"同族专利备选
不适用场景 -- 超出摘要翻译的需求:
  • 完整专利文本、权利要求书或说明书检索
  • 基于关键词、分类或申请人的专利搜索
  • 专利法律状态、引用分析或态势报告
  • 专利估值或侵权分析
边界情况 -- 边缘场景:
  • 若用户请求“专利内容”但未指定具体部分,默认进行摘要翻译,并告知用户关于权利要求书/说明书工具的信息。
  • 若用户提供超过100个专利,拆分为多个批次处理。
反馈:
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 本技能的结果与用户意图不符
  3. 用户表达对本技能的不满或赞扬
  4. 任何您认为可以改进的内容
按照
references/api.md
中的说明调用反馈API,不要打断用户的流程。

如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills