โ05-03-2025 12:29 AM
What best way to get GPT AI to read long json? File upload? How do I configure that?
โ05-04-2025 01:02 AM
Hi @jiyu269,
If you have tried OpenAI Analyze Text action and what was the limitation of the characters you were facing.
Regards,
Prudvi
โ05-07-2025 06:36 AM
The text I'm sending is too long. I haven't had a chance to tried file attachment method yet.
โ07-31-2025 06:18 AM
Hi @jiyu269 ,
Generally if we have large set of data and we can't upload the entire file at once . In this case we can use pagination concept ,In workato using while loop we can do that . Below are the steps to follow
1. Create a list of items/Contents
2.Apply while loop
3. Call GPT AI or any system to upload
4. Output GPT AI can be add to Add list of items / Append to file contents if you are storing file storage
5.loop Condition (if row size = 41560 ) based on your condition need to this condition
If we follow this approach we can send the all contents to any target system
Let me know this approach is working or not
Thankyou