C# 上传票据文件 调用Dify的API完成OCR识别

为了验证Dify对票据识别的正确率,博主开发了一个批量调用Dify API 完成OCR识别工具,在RPA项目上测试样本数据识别的正确率。只需要点一下按钮,程序就放出10次请求,然后把AI智能体OCR识别的结果全部返回。感谢zoujiawei提供的DifyWebClient类库,我们只需要直接调用就行,不过还是有一些地方需要博主说明一下:

1、Dify 调用API上传文件,还是老问题,如果设置了多个文件,你需要给数组,如果单个文件,你不能给数组,否则接口调用会报错。DifyWebClient类库提供的是多个文件功能,所以Dify中也需要设置成多个文件。

2、DifyWebClient类库,需要在线程中调用,比如winform中使用,你会一直卡在那儿,但如果放线程中,使用就正常了。

网上C# 调用Dify API的代码居然很少,我来提供一篇吧。WinForm .net8

cs 复制代码
using DifyWebClient.Net;
using DifyWebClient.Net.ApiClients;
using DifyWebClient.Net.Enum;
using DifyWebClient.Net.Models.Base;
using DifyWebClient.Net.Models.Knowledge;
using DifyWebClient.Net.Models.WorkflowApp;

namespace DifyUpload
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            Control.CheckForIllegalCrossThreadCalls = false;

        }

        private void toolStripButton1_Click(object sender, EventArgs e)
        {

            for (int i = 0; i < 10; i++)
            {
                Task task = Task.Run(() => Thread1());
            }

        }

        void Thread1()
        {

            //上传需要识别的图片
            WorkflowAppApiClient workflowAppApiClient = new WorkflowAppApiClient("https://agent.cloud-uat.XXXXX.cn/v1", "app-65i3syVDIQ6U3op3mVdKEXXX");
            FileUploadResponse fileUploadResponse = workflowAppApiClient.FileUpload(FileToBinaryConverter.ConvertFileToBinary("d:\\527800.png"), "527800.png");
            // ps(listBox1, fileUploadResponse.id);

            //准备调用工作流的参数,注意:智能体的文件输入必须是多个文件,设置成单文件会报错!
            Dictionary<string, object> inputkeyValuePairs = new Dictionary<string, object>();
            List<FileListElement> fileListElements = new List<FileListElement>();
            fileListElements.Add(new FileListElement(upload_file_id: fileUploadResponse.id, "image", "local_file", null));
            inputkeyValuePairs.Add("input_file", fileListElements); // input_file 是自己在dify中的命名参数

            //调用工作流
            ExecuteWorkflowRequest executeWorkflowRequest = new ExecuteWorkflowRequest(inputkeyValuePairs, user: "abc-123", ResponseMode.Blocking);
            CompletionResponse completionResponse = workflowAppApiClient.ExecuteWorkflow(executeWorkflowRequest);

            //  ps(listBox1, completionResponse.RealJsonstring);
            //   textBox1.Text = (completionResponse.data.outputs["text"].ToString());
            // Console.WriteLine(completionResponse.RealJsonstring);
            // ps(listBox1, completionResponse.data.outputs["text"].ToString());
            ps(listBox1, completionResponse.data.outputs["text"].ToString());
        }

        public void ps(ListBox box, string s)
        {
            String line = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + " " + s;
            box.Items.Add(line);
        }
    }
}

----------2025.10.23--------------

为了批量调用Dify 完成OCR识别后,校对识别的内容,然后去不断优化修改提示词,工具升级了自动校对全部返回文本的功能。

相关推荐
.房东的猫14 小时前
ERP(金蝶云星空)开发【安装篇】
c#
智慧地球(AI·Earth)18 小时前
DeepSeek架构新探索!开源OCR 2诞生!
架构·ocr
OpenBayes18 小时前
教程上新|DeepSeek-OCR 2公式/表格解析同步改善,以低视觉token成本实现近4%的性能跃迁
人工智能·深度学习·目标检测·机器学习·大模型·ocr·gpu算力
PPIO派欧云19 小时前
PPIO上线GLM-OCR:0.9B参数SOTA性能,支持一键部署
人工智能·ai·大模型·ocr·智谱
东华果汁哥19 小时前
【大模型 OCR】GLM-OCR 使用教程:从入门到部署
ocr
fie88891 天前
基于C#的推箱子小游戏实现
开发语言·c#
.房东的猫1 天前
ERP(金蝶云星空)开发【业务数据中心创建和注册】
c#
bugcome_com1 天前
C# 进阶核心知识点汇总|多项目开发 + 委托 + Lambda + 事件一次吃透
c#
h7ml1 天前
查券返利机器人的OCR识别集成:Java Tesseract+OpenCV优化图片验证码的自动解析方案
java·机器人·ocr
SunflowerCoder1 天前
基于插件化 + Scriban 模板引擎的高效 HTTP 协议中心设计
http·c#