mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-06-02 00:57:41 +08:00
docs: update docs and readme
This commit is contained in:
32
docs/ja/tools/web-fetch.mdx
Normal file
32
docs/ja/tools/web-fetch.mdx
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
title: web_fetch - Web 取得
|
||||
description: Web ページやドキュメントのコンテンツを取得
|
||||
---
|
||||
|
||||
HTTP/HTTPS URL の内容を取得します。Web ページからは可読テキストを抽出し、ドキュメントファイル(PDF、Word、Excel など)は自動でダウンロードして解析します。
|
||||
|
||||
## パラメータ
|
||||
|
||||
| パラメータ | 型 | 必須 | 説明 |
|
||||
| --- | --- | --- | --- |
|
||||
| `url` | string | はい | HTTP/HTTPS URL(Web ページまたはドキュメント) |
|
||||
|
||||
## 対応ファイル形式
|
||||
|
||||
| 種別 | 形式 |
|
||||
| --- | --- |
|
||||
| PDF | `.pdf` |
|
||||
| Word | `.docx` |
|
||||
| テキスト | `.txt`、`.md`、`.csv`、`.log` |
|
||||
| 表計算 | `.xls`、`.xlsx` |
|
||||
| プレゼン | `.ppt`、`.pptx` |
|
||||
|
||||
## ユースケース
|
||||
|
||||
- Web ページの可読テキストを抽出する
|
||||
- リモートドキュメントのダウンロードと解析
|
||||
- API レスポンスの確認
|
||||
|
||||
<Note>
|
||||
`web_fetch` は静的 HTML のみ取得できます。JavaScript レンダリングが必要なページ(SPA など)は `browser` ツールを使用してください。
|
||||
</Note>
|
||||
Reference in New Issue
Block a user