ChatGPT PROMPTs Splitter

Open-source tool for safely process chunks of up to 15,000 characters per request

Visit count: {{ visit_count }}
Enter the PROMPT that you want to use for the ChatGPT request.
{{ prompt|length }} characters
Choose the max length for each split part.
{% if file_data %}

Instructions

The total length of the content that I want to send you is too large to send in only one piece.
        
For sending you that content, I will follow this rule:
        
[START PART 1/10]
this is the content of the part 1 out of 10 in total
[END PART 1/10]
        
Then you just answer: "Received part 1/10"
        
And when I tell you "ALL PARTS SENT", then you can continue processing the data and answering my requests.
This way we explain ChatGPT how to process the messages we are gonna send.
{% for file in file_data %} {% set partNumber = file.name[6:9]|int %} {% set totalParts = file.name[13:16]|int %} {% endfor %}
{% endif %}
Powered by Vercel