humanize

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Humanize AI Text

AI文本类人化处理

Transform AI-generated content into natural, human-like writing using the HumanizerAI API.
借助HumanizerAI API,将AI生成的内容转换为自然、类人的文本。

How It Works

工作流程

When the user invokes
/humanize
, you should:
  1. Parse $ARGUMENTS for text and optional --intensity flag
  2. Call the HumanizerAI API to humanize the text
  3. Present the humanized text with before/after scores
  4. Show remaining credits
当用户调用
/humanize
指令时,你需要:
  1. 解析$ARGUMENTS中的文本和可选的--intensity参数
  2. 调用HumanizerAI API对文本进行类人化处理
  3. 展示处理前后的分数对比及处理后的文本
  4. 显示剩余积分

Parsing Arguments

参数解析

The user may provide:
  • Just text:
    /humanize [their text]
  • With intensity:
    /humanize --intensity aggressive [their text]
Default intensity is
medium
.
用户可提供以下两种形式:
  • 仅文本:
    /humanize [用户的文本]
  • 带强度参数:
    /humanize --intensity aggressive [用户的文本]
默认强度为
medium

Intensity Levels

强度等级

ValueNameDescriptionBest For
light
LightSubtle changes, preserves styleAlready-edited text, low AI scores
medium
MediumBalanced rewrites (default)Most use cases
aggressive
BypassMaximum bypass modeHigh AI scores, strict detectors
名称描述适用场景
light
轻度细微修改,保留原文风格已编辑过的文本、AI检测分数较低的内容
medium
中度平衡改写(默认模式)大多数使用场景
aggressive
强绕过最大强度绕过模式AI检测分数较高的内容、严格的检测工具

API Call

API调用

Make a POST request to
https://humanizerai.com/api/v1/humanize
:
Authorization: Bearer $HUMANIZERAI_API_KEY
Content-Type: application/json

{
  "text": "<user's text>",
  "intensity": "medium"
}
https://humanizerai.com/api/v1/humanize
发送POST请求:
Authorization: Bearer $HUMANIZERAI_API_KEY
Content-Type: application/json

{
  "text": "<user's text>",
  "intensity": "medium"
}

Response Format

结果展示格式

Present results like this:
undefined
按以下格式展示结果:
undefined

Humanization Complete

类人化处理完成

Score: X → Y (improvement) Words Processed: N Credits Remaining: X

分数: X → Y (提升幅度) 处理字数: N 剩余积分: X

Humanized Text

处理后的文本

[The humanized text]

[Recommendation based on final score]
undefined
[类人化后的文本]

[基于最终分数的建议]
undefined

Credit Usage

积分使用规则

Error Handling

错误处理

Insufficient Credits

积分不足

If the user doesn't have enough credits:
  1. Show how many credits are needed vs available
  2. Direct them to https://humanizerai.com/dashboard to top up
如果用户积分不足:
  1. 展示所需积分与可用积分的对比
  2. 引导用户前往https://humanizerai.com/dashboard进行充值

Invalid API Key

无效API密钥

  1. Check HUMANIZERAI_API_KEY environment variable
  2. Direct to https://humanizerai.com to get a key
  1. 检查HUMANIZERAI_API_KEY环境变量
  2. 引导用户前往https://humanizerai.com获取密钥

Rate Limit

速率限制

If rate limited, suggest waiting or upgrading to Business plan.
如果触发速率限制,建议用户等待或升级至商业版套餐。