Chat 〜本と共に〜
Chat本の本を 電子書籍や長いPDFを含めて
リンクをドラッグ&ドロップまたは貼り付け
PDF、Word、PowerPoint、テキスト - リンクをドラッグ、ブラウズ、貼り付け
🔒 ファイルは 個人的に処理され 自動的に削除されます How we handle your data
Whole books and hundred-page PDFs are too long to paste into a chatbot — but not for PDF.chat. It indexes the entire book and retrieves the most relevant pages for each question, so length is never a problem.
章、人物、論点、特定の箇所について質問し、テキストに基づいた答えをページ引用で得る。
どうやって chat 〜本と共に〜
1
本をアップロード
電子書籍 (EPUB)、長い PDF またはどんな大型文書でも。
2
すべてのことを尋ねて
PDF.chatは あなたの質問に関連するページを 見つける どんなに長い本でも
3
章ごとに探索
節の要約、テーマの追跡、引用を見つける -- すべて引用されます。
一般的な用途
- Chat 教科書やノンフィクションを読んで勉強する
- 長い電子書籍のパスを検索して引用します
- 長いレポートの章または部分を要約します
- 100ページの文書やドケットに問い合わせる
よくある質問
Yes — it indexes the whole book and pulls the relevant passages for each question instead of needing the entire text at once.
Yes — "what happens in chapter 7?" or "summarize part two" and it answers from those pages.
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=chat-with-book"
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 ドキュメントを読む →