Chat 文書 (Word, PPT, EPUB, スキャン) と共に
ChatはWord、PowerPoint、EPUB、テキスト、スキャンファイルをサポートする。
リンクをドラッグ&ドロップまたは貼り付け
PDF、Word、PowerPoint、テキスト - リンクをドラッグ、ブラウズ、貼り付け
🔒 ファイルは 個人的に処理され 自動的に削除されます How we handle your data
Chat with a Document は Word doc、PowerPoint、EPUB、テキストファイルをアップロードしたり、スキャンしたり、全体を読む代わりに質問をすることができます。pdf.chat は文書を読み、実際の内容から答えを出します。要約、具体的な事実、定義、それぞれの答えに引用を付けて、それを出典と比較して検証できます。これは PDF を超える文書のために作成されました。PDF の場合は、特に Chat with PDF を使用してください。
文書を見つけたら、 文書の質問をするのに時間がありません。スライドデッキを置いて、 3 つのキータケアウェイを尋ねます。Word のレポートをアップロードして、 結論を尋ねます。EPUB を開いて、 テーマがどこで扱われているか尋ねます。 すべての答えは、 文書のテキストに基づいていて、 出典を引用しているので、 一般的な推測ではなく、 信頼できるものを確認できます。
There is nothing to install and no signup to start. Upload your document, watch it load beside the chat, and start asking. pdf.chat works in 100+ languages, your files are deleted automatically after processing, and nothing is ever sold or shared. Document chat runs on a free account, with paid plans from $5/mo for more pages, longer documents, and unlimited questions. Scanned or image-only files are read with OCR automatically, so you can chat with those too.
どうやって chat 文書 (word, ppt, epub, スキャン) と共に
一般的な用途
- 会議の前にスライドやレポートから 3つのポイントを引っ張る
- 特定のテーマ、用語、図を扱ったWord文書やEPUBを問い合わせる。
- 長い文書から 単一の事実 日付 金額 参照番号を 早く取得する
- 書類や契約書を読むことは すべての行を読まずに
- ノート,スライド,電子書籍から学習する。
- Chatting with a scanned letter or receipt, which pdf.chat reads with OCR automatically.
よくある質問
API を通してこれを使う
このツールをプログラム的に実行します。一つの POST で実行します。アカウントページから API トークンで認証します。
curl -X POST https://pdf.chat/api/v1/ocr/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-F "file=@your-file.png" \
-F "tool=document"
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 ドキュメントを読む →