ChatGPT is a fast, low‑cost assistant that can spark ideas, polish prose, and keep a writing project on schedule. In this tutorial we walk through each step, from setting up an account to creating a full chapter outline. Follow the screenshots and code blocks to make the most of the model for fiction, nonfiction, and copywriting.
Visit platform.openai.com and register with an email address. Verify the account and add a payment method. The free tier includes $5 of usage each month, which is enough for light drafting.
Two popular options are the web chat at chat.openai.com and the API accessed via curl or a language‑specific SDK. For most writers the web chat is simplest.
# Example: test the API with curl
curl https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model":"gpt-4o-mini",
"messages":[{"role":"user","content":"Write a 100‑word mystery hook."}]
}'
Obsidian’s Text Generator plugin (free) lets you send a selected block to ChatGPT and insert the response directly into your markdown file.
Effective prompts include three parts: role, task, and constraints. Example:
You are a suspense novelist. Write a 250‑word opening scene set in a subway station at midnight. Use short sentences and avoid adverbs.
Set temperature to 0.7 for creativity, 0.2 for factual consistency. Limit max_tokens to control length. In the web UI, click the three‑dot menu → “Settings” → “Response length”.
Write a 300‑word opening for a sci‑fi thriller. Setting: a neon‑lit cargo dock on Mars. Protagonist: Lina, a former pilot turned smuggler. Inciting incident: a mysterious crate arrives with a ticking timer.
Below is a condensed version of the model’s output.
Dust swirled around the rusted hulls as Lina checked the seals. The crate pulsed a soft blue, counting down…
Copy the paragraph and ask for a rewrite with “more sensory detail and less dialogue”. The model will adjust while keeping the same plot beat.
Prompt the model for a high‑level structure first.
Outline a three‑act structure for a 80,000‑word fantasy novel about a reluctant heir who must unite fractured kingdoms.
Take each act and request chapter‑by‑chapter points.
Provide 12 chapter titles and one‑sentence summaries for Act 2 of the outline above. Aim for 5,000‑word chapters.
| Depth | Prompt | Typical output |
|---|---|---|
| High‑level | “Three‑act outline” | 3 bullet points |
| Mid‑level | “Chapter titles” | 12 titles + summaries |
| Low‑level | “Scene list for Chapter 4” | 8‑10 scene beats |
Ask the model to act as a copy editor.
Proofread the following paragraph and correct any grammar or punctuation errors. Keep the author's voice.
Request a word‑count reduction.
Rewrite this 450‑word paragraph in 250 words. Remove filler and replace weak verbs with stronger alternatives.
Provide speaker tags and ask for natural speech.
Make the dialogue between Maya and the AI sound like a realistic tech‑support call. Keep the technical details.
| Feature | ChatGPT Web | Obsidian Text Generator | Notion AI |
|---|---|---|---|
| Cost | Free tier $5/mo, pay‑as‑you‑go thereafter | Free plugin, API cost applies | Free for personal use, $8/mo for team |
| Interface | Browser chat, no code | Inline markdown, keyboard shortcuts | Block‑level AI, visual editor |
| Customization | Temperature & token settings | Prompt templates, system messages | Pre‑set tones (creative, professional) |
| Export | Copy‑paste only | Direct to markdown file | Export to PDF/HTML |
| Best for | Quick ideas, one‑off queries | Long‑form drafting in notes | Collaborative docs and brainstorming |
Begin with a clear setting, character goal, and conflict. Example: “Write a 500‑word opening scene set in a rainy Tokyo marketplace where a teenage hacker discovers a hidden AI.”
Yes. Ask for a three‑act structure, then request chapter‑by‑chapter bullet points. Refine each chapter with specific word‑count goals.
Add style constraints. Tell ChatGPT to use vivid verbs, limit adjectives, and emulate a chosen author’s voice.
OpenAI does not store personal data from API calls, but avoid uploading copyrighted text in public demos. Use the API with a private key for full control.
Notion AI, Obsidian’s Text Generator plugin, and the free ChatGPT web interface all integrate smoothly with writing workflows.
Using ChatGPT as a co‑author can speed up brainstorming, tighten prose, and keep projects on track. Start with the simple prompts above, then experiment with temperature and custom roles. The more you practice, the more the model becomes a reliable part of your writer’s toolkit.