---
name: coderwanfeng/create_article
source: https://app.decimal.ai/s/coderwanfeng-create-article@2/SKILL.md
source_sha256: d1c776bdfd7d
---

# create_article Skill

> 创建文章

## 功能描述

根据给定的主题，自动创建指定行数的文章。

## 所属分类

`office/skills/tools/create_article/`

## 调用方式

```python
from skills.tools import create_article

create_article(
    theme='人工智能的发展',
    line_num=300
)
```

## 参数说明

| 参数 | 类型 | 必填 | 默认值 | 说明 |
|------|------|------|--------|------|
| `theme` | str | 是 | - | 文章的主题 |
| `line_num` | int | 否 | `200` | 文章的行数 |

## 返回值

`None`

## 使用示例

```python
from skills.tools import create_article
create_article(theme='Python 自动化办公', line_num=500)
```

## 原始函数

`office.api.tools.create_article`