跳到主要内容

4 篇博文 含有标签「AI Document Parser」

查看所有标签

在 Power Automate 中为您的发票格式构建自定义 AI 分析器:Dropbox 三步工作流程

· 阅读需 27 分钟
SEO and Content Writer

A 自定义 AI 分析器模板 这是一个命名的 JSON 模式,您可以在 PDF4me 开发门户中定义它,用于告知 AI 从特定文档类型中提取哪些字段。本演练将构建一个用于 PDF4me 自有 SaaS 订阅发票(33 个字段:供应商地址块、瑞士 MWST 税率、订阅 ID、行项目、折扣详情)的分析器,然后通过一个三步 Power Automate 流程调用它,该流程从 Dropbox 读取 PDF 文件并返回结构化的 JSON。

内置的 default_invoice_extraction 虽然涵盖了通用发票,但实际的应付账款团队会使用特定供应商的布局、自定义的明细项目列、特定管辖区的税项字段以及通用架构所缺失的订阅元数据。只需构建一次自定义分析器,即可永久获得精确匹配提取,无需逐字段提示,也无需后续逻辑来清理响应。

完整工作流程概览
Setup A. Log in to dev portal
dev.pdf4me.com login. Email plus password or any SSO provider (Microsoft, Google, Facebook, Apple, GitHub).
Setup B. Open AI Document Parser
Dashboard sidebar, AI Document Parser. Lists every Analyzer Template you have already created.
Setup C. Add a Parse Analyzer
Click Add, name it (e.g. Test Invoice), choose Type Parse. The Analyzer Id is what Power Automate references.
Setup D. Paste the JSON schema
Document Schema field. Each schema entry has fieldName, fieldType, fieldDescription. Save Changes.
Flow 1. Manually trigger a flow
Replace later with HTTP / SharePoint / Outlook trigger when ready for production.
Flow 2. Get file content (path)
Dropbox path /pdf4me.pdf, Infer Content Type Yes. Reads the source PDF into the flow.
Flow 3. AI - Document Parser
PDF4me action. File Content from step 2, File Name Test.pdf, Customisation Note Test Invoice (your Analyzer Id). Returns body JSON.

在 Zapier 中按供应商名称重命名所有供应商发票:5 步 Dropbox + PDF4me AI 工作流程

· 阅读需 23 分钟
SEO and Content Writer

应付账款中最令人头疼的部分不是支付发票,而是…… 三周后才找到正确的供应商发票 当财务部门询问时。每个供应商的文件命名方式都不同。一半是 invoice.pdf另一半是 INV-2089-FINAL-v3.pdf 供应商曾四次更改命名规则。解决方法:让 AI 在每张发票到达时立即读取供应商名称,然后在文件进入长期存储之前重命名该文件。本教程将构建这种精确的模式。 ZapierPDF4me AI - 文档解析器 以及 2 行 Zapier 代码 步骤。五个 Zap 步骤。真实截图。供应商名称即为文件名。符合审计要求的文件夹。搜索功能即刻可用。

Zap概览
1. Dropbox: New File in Folder
Trigger. Polls /MuneerTrigger every 2 min for any new vendor invoice that lands in the intake folder.
2. Dropbox: Find File
Looks up the matching file in /pdf4metest/sample so the AI parser gets a real binary, not just a Dropbox metadata pointer.
3. PDF4me: AI - Document Parser
Runs the default_invoice_extraction Analyzer. Returns Vendor Name, Invoice Number, Total, Dates, Line Items as JSON.
4. Code by Zapier: Run JavaScript
Two lines. JSON.parse the Doc Text into a real object so step 5 can use Vendor Name as a Zapier token.
5. Dropbox: Upload File
Writes the original file back to /pdf4meoutput with Vendor Name as the filename and the original extension preserved.

在 Zapier 中使用 AI 重命名供应商发票:Dropbox + PDF4me 的 5 步工作流程

· 阅读需 21 分钟
SEO and Content Writer

应付账款中最令人头疼的部分不是支付发票,而是…… 寻找 三周后有人索要时,发现正确的发票仍然存放在仓库里。每个供应商的文件命名方式都不同,每次扫描都是如此。 untitled (3).pdf每个 Dropbox 文件夹都会变成一个无底洞。解决方法是让 AI 在发票到达时立即读取,提取客户姓名,并在文件进入长期存储之前重命名文件。本教程将构建一个精确的模式。 ZapierPDF4me AI - 文档解析器Dropbox以及 2 行 Zapier 代码 步骤。五个 Zap 步骤。来自一个正常运行的 Zap 的真实屏幕截图。供应商名称将变为文件名。搜索功能再次正常运作。

Zap概览
1. Dropbox: New File in Folder
Trigger. Polls /MuneerTrigger every 2 min for new files. Use any inbox folder where vendor invoices land.
2. Dropbox: Find File
Looks up the matching file in /pdf4metest/sample by File Name so we get the binary content into the Zap.
3. PDF4me: AI - Document Parser
Runs the default_invoice_extraction Analyzer against the file. Returns JSON keyed by the Analyzer schema (Customer Name, dates, totals, line items).
4. Code by Zapier: Run JavaScript
Two lines. JSON.parse the Doc Text into a real object so the next step can read its properties as tokens.
5. Dropbox: Upload File
Writes the original file back to /pdf4meoutput with Customer Name as the filename and the original extension.

在 Make 中使用 AI 提取和智能重命名任何 PDF:一个包含 4 个模块的 Dropbox 工作流程,借助 PDF4me AI - 文档解析器

· 阅读需 22 分钟
SEO and Content Writer

供应商发票自动化中最难的部分始终是文件命名。一个文件夹里装满了 2030703747 (1).pdfScan_2026-04-12_invoice.pdf 无法搜索、无法排序、也无法审核。 PDF4me AI - 文档解析器 此外,还有一个 Make Parse JSON 模块可以解决这个问题。 4 个模块,零代码人工智能从PDF文件中提取供应商名称,同样的方法也适用于重新上传文件。 Acme Industries.pdf以下截图展示了画布中捕获的确切运行过程。

概况
1. Dropbox Download
Pulls /pdf4metest/sample/2030703747 (1).pdf. Scheduled trigger shown.
2. PDF4me AI - Document Parser
Runs the default_invoice_extraction Analyzer Template. Output: Doc Text JSON.
3. JSON Parse JSON
JSON string mapped to 3. Doc Text. Exposes vendorName, invoiceNumber, totalAmount, etc.
4. Dropbox Upload
Writes to /pdf4meoutput/ with File Name = 6. vendorName + .pdf. Smart-rename complete.