Using GPT, not ChatGPT.

This commit is contained in:
Edward Betts 2025-11-16 06:55:23 +00:00
parent 30b4d27c6a
commit 5d8b0ecc2d

View file

@ -3,7 +3,7 @@
{% block content %}
<section class="intro">
<h2>Draft Mastodon post</h2>
<p>Review alt text, edit your caption, and ask ChatGPT for phrasing help before posting.</p>
<p>Review alt text, edit your caption, and ask GPT for phrasing help before posting.</p>
</section>
{% if not mastodon_ready %}
@ -24,9 +24,8 @@
{% endif %}
<div class="status-content">{{ latest_status.content|safe }}</div>
<label class="reply-checkbox">
<input type="hidden" name="reply_to_latest" value="0">
<input type="checkbox" name="reply_to_latest" value="1" {% if reply_to_latest %}checked{% endif %} {% if not mastodon_ready %}disabled{% endif %}>
Reply to this post to continue the thread
Continue the thread
</label>
</section>
{% elif latest_status_error %}
@ -64,12 +63,12 @@
</div>
<div class="post-instructions">
<label for="post_instructions">Instructions for ChatGPT (optional)</label>
<label for="post_instructions">Instructions for GPT (optional)</label>
<textarea id="post_instructions" name="post_instructions" rows="3" placeholder="Mention tone, audience, hashtags, etc.">{{ instructions }}</textarea>
</div>
<div class="compose-actions">
<button type="submit" name="action" value="refine">Improve text with ChatGPT</button>
<button type="submit" name="action" value="refine">Improve text with GPT</button>
<button type="submit" name="action" value="post" {% if not mastodon_ready %}disabled{% endif %}>Post to Mastodon</button>
</div>
</form>