Automate Invoice Data Extraction with Zapier & ChatGPT in 5 steps

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ม.ค. 2025

ความคิดเห็น • 16

  • @junmarmirantes8864
    @junmarmirantes8864 3 หลายเดือนก่อน

    it really help me! thank you for this very informational tips!

  • @VitorDeCastro-g4d
    @VitorDeCastro-g4d 2 หลายเดือนก่อน

    Great Content. I couldn't use because it says that I achieved my limit with API. Since I never used. I guess it is because my invoice contains more values to extract.

  • @AndreiGalis-c7m
    @AndreiGalis-c7m 2 หลายเดือนก่อน +2

    Hey Corbin.the code is not working ,The error "ReferenceError: Cannot access 'text' before initialization" occurs because the variable text is being used before it is declared. In your code, you are trying to access inputData[text] before text is initialized. To fix this, declare and initialize text before using it.

    • @AIPr0ductivity
      @AIPr0ductivity 20 วันที่ผ่านมา

      const response = await fetch(inputData["text"]);
      const text = await response.text();
      const words = text.split(" ");
      const result = words.slice(0, 3000).join(" ");
      output = { result: result };

  • @alexandermercado1707
    @alexandermercado1707 2 หลายเดือนก่อน +2

    Could you share the code for Java Script. The Zap Template wont work

    • @AIPr0ductivity
      @AIPr0ductivity 20 วันที่ผ่านมา

      const response = await fetch(inputData["text"]);
      const text = await response.text();
      const words = text.split(" ");
      const result = words.slice(0, 3000).join(" ");
      output = { result: result };

  • @HankScorpio94
    @HankScorpio94 หลายเดือนก่อน

    When I go to do this I get the result output as a bunch of random characters / code that starts with hydrate|||
    how do I get it to be the plain text of the doc?

  • @alexandermercado1707
    @alexandermercado1707 2 หลายเดือนก่อน +1

    Did this help anyone, I could not get this to work

    • @AIPr0ductivity
      @AIPr0ductivity 20 วันที่ผ่านมา

      const response = await fetch(inputData["text"]);
      const text = await response.text();
      const words = text.split(" ");
      const result = words.slice(0, 3000).join(" ");
      output = { result: result };

  • @FrederikBlegvadAndersen-cu8fm
    @FrederikBlegvadAndersen-cu8fm 4 หลายเดือนก่อน

    Great

  • @Ms-b8t
    @Ms-b8t 4 หลายเดือนก่อน +1

    I recently automated PDF data extraction for the company I work for. I used Python, selenium and Fidz (pdf processing library).
    Is this approach of using chatgpt and zapier to automate PDF data extraction not overkill?

    • @japanlove8249
      @japanlove8249 3 หลายเดือนก่อน

      It's much easy for people who don't know coding(like me)

    • @jonas3985
      @jonas3985 3 หลายเดือนก่อน +1

      Hey, i am working on the same task right now for my company and i got a little stuck. i want all of the Items to be in seperat fields, but that doesnt seem to work with Zapier. Could you maybe elaborate a little how you did yours? That would be very helpful!

    • @Ms-b8t
      @Ms-b8t 3 หลายเดือนก่อน +1

      @@jonas3985 Yhh so having zapier and chatgpt thrown into the mix would add unnecessary complexity in my opinion.
      Prompt 4o about using python and its libraries called selenium and fids. Much more straightforward. Here you’ll only be working on one script as opposed to a couple different layers

  • @Corbin_Brown
    @Corbin_Brown 4 หลายเดือนก่อน

    😃