geo/docs/02-模块说明/platform-rules.md

45 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 平台规则中心
## 概述
平台规则中心管理各AI平台的内容规则和发布要求确保生成的内容符合各平台标准。
## 功能特性
### 规则管理
- 规则分类(关键词、长度、格式、敏感词)
- 规则版本控制
- 规则优先级
### 规则检查
- 实时检查
- 批量检查
- 检查结果反馈
## API接口
平台规则API位于 `backend/app/api/platform_rules.py`
### 主要端点
| 方法 | 路径 | 说明 |
|------|------|------|
| GET | /api/v1/platform-rules | 获取规则列表 |
| POST | /api/v1/platform-rules | 创建规则 |
| PUT | /api/v1/platform-rules/{id} | 更新规则 |
| DELETE | /api/v1/platform-rules/{id} | 删除规则 |
| POST | /api/v1/platform-rules/check | 检查内容 |
### 检查维度
| 维度 | 说明 |
|------|------|
| keyword_coverage | 关键词覆盖度 |
| readability | 可读性评分 |
| tone_consistency | 语气一致性 |
| length_compliance | 长度合规 |
| fact_accuracy | 事实准确性 |
| geo_optimization | GEO优化度 |