キーポイント
すべてのPDFから数秒で重要なテイクアウトを引き出す。
リンクをドラッグ&ドロップまたは貼り付け
PDF、Word、PowerPoint、テキスト - リンクをドラッグ、ブラウズ、貼り付け
🔒 ファイルは 個人的に処理され 自動的に削除されます How we handle your data
PDF.chatは、文書のキーポイントをスキャン可能なリストに抽出する。
It's a TL;DR you can trust: ask for the main points, the action items, or just the risks, and dig into any of them by chatting with the document.
どうやって キーポイント
1
文書をアップロード
報告書、論文、契約書、 または長いPDF
2
キーポイントを取得
PDF.chat extracts the essential takeaways as a cited bullet list.
3
ドリルイン
行動項目のみを問い、リスクのみを問い、あるいは詳細を拡張する。
一般的な用途
- 会議前にレポートから重要な結論を抽出します
- 長いメールスレッドやメモからアクションアイテムを抽出します
- 契約の主要なリスクや義務をリストする
- 研究論文のブースター付き TL;DR を取得します
よくある質問
Key points give you a scannable bulleted list of the most important takeaways; the summary reads as a paragraph. Both cite their pages.
Yes — ask "list the action items" or "what are the risks?" and it extracts just those.
API を通してこれを使う
このツールをプログラム的に実行します。一つの POST で実行します。アカウントページから API トークンで認証します。
curl -X POST https://pdf.chat/api/v1/ocr/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "file=@your-file.pdf" \
-F "tool=pdf-key-points"
5 ページ以下のファイルはインラインで結果を返します。それ以外の場合はジョブをポールし、次にダウンロードします。 md:
curl -L "https://pdf.chat/api/v1/ocr/JOB_UUID/download/?format=md" \
-H "Authorization: Bearer YOUR_API_TOKEN" -o result.md
次に、文書に関する質問を行い、ページに引用された答えを返します。
curl -X POST https://pdf.chat/api/v1/chat/JOB_UUID/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"message": "Summarize this document"}'
API ドキュメントを読む →