Tools & Platforms
Navigate the LLM ecosystem: ChatGPT, Claude, Gemini, APIs, and specialized tools.
Major Platforms Overview
OpenAI ChatGPT
Models: GPT-5, GPT-5 mini, GPT-4o, o-series reasoning models
Strengths:
- Most versatile and widely used
- Extensive plugin ecosystem
- Strong at code generation
- DALL-E integration for images
- Large community and resources
Plans:
- Free: Limited GPT-5 mini
- Plus ($20/mo): GPT-5, GPT-4o, DALL-E, higher limits
- Team ($25-30/user/mo): Team workspace, admin controls
- Enterprise (Custom): Unlimited, custom models, priority support
Best For: General use, coding, integrations, plugins
Access: chat.openai.com
Anthropic Claude
Models: Claude Opus 4.7, Claude Sonnet 4.6, Claude Haiku 4.5
Strengths:
- Long context windows (200K standard, 1M on Opus 4.7)
- Excellent at analysis and research
- Strong safety and helpfulness
- Great for long documents
- High-quality writing
Plans:
- Free: Limited Claude Sonnet 4.6
- Pro ($20/mo): 5x higher limits, priority access
- Team ($25-30/user/mo): Team features
- Enterprise (Custom): Unlimited, custom solutions
Best For: Research, analysis, long documents, safety-critical applications
Access: claude.ai
Google Gemini
Models: Gemini 2.5 Pro, Gemini 2.5 Flash
Strengths:
- Huge context windows (1-2M tokens)
- Multimodal from the start
- Fast inference
- Google Search integration
- Free tier is generous
Plans:
- Free: Gemini 2.5 Flash, rate limits
- Advanced ($20/mo): Gemini 2.5 Pro, 1M context, priority
- Business/Enterprise: Team features, admin controls
Best For: Research with huge documents, multimodal tasks, Google Workspace users
Access: gemini.google.com
Microsoft Copilot
Models: GPT-5 (via Azure OpenAI)
Strengths:
- Integrated with Microsoft 365
- Web search built-in
- Image generation (DALL-E)
- Free tier available
Plans:
- Free: GPT-5 access with limits
- Pro ($20/mo): Higher limits, priority
- Microsoft 365 Copilot ($30/user/mo): Office integration
Best For: Microsoft ecosystem users, free GPT-5 access
Access: copilot.microsoft.com
Specialized AI Tools
Perplexity AI
Purpose: AI-powered search with citations Key Feature: Real-time web search with source links Pricing: Free tier, Pro $20/mo Best For: Research, fact-checking, current events URL: perplexity.ai
GitHub Copilot
Purpose: AI code completion in IDE Key Feature: Context-aware code suggestions Pricing: $10/mo individual, $19/mo business Best For: Software developers URL: github.com/features/copilot
Cursor
Purpose: AI-first code editor Key Feature: Full codebase awareness, inline editing Pricing: Free tier, Pro $20/mo Best For: Developers wanting deep AI integration URL: cursor.sh
v0 by Vercel
Purpose: AI UI generation Key Feature: Generates React components from descriptions Pricing: Free tier, Pro plans available Best For: Frontend developers, rapid prototyping URL: v0.dev
Midjourney
Purpose: AI image generation Key Feature: Highest quality AI art Pricing: $10-120/mo Best For: Professional image generation URL: midjourney.com
RunwayML
Purpose: AI video generation and editing Key Feature: Video AI tools (Gen-2, frame interpolation) Pricing: Free tier, Pro $12-76/mo Best For: Video creators, filmmakers URL: runwayml.com
ElevenLabs
Purpose: AI voice generation Key Feature: Realistic voice cloning and TTS Pricing: Free tier, Pro $5-330/mo Best For: Podcasts, audiobooks, voiceovers URL: elevenlabs.io
NotebookLM
Purpose: AI research assistant Key Feature: Upload documents, get AI insights Pricing: Free (Google) Best For: Research, studying, document analysis URL: notebooklm.google.com
Otter.ai
Purpose: AI meeting transcription Key Feature: Real-time transcription, summaries Pricing: Free tier, Pro $10-20/mo Best For: Meetings, interviews, note-taking URL: otter.ai
Notion AI
Purpose: AI in Notion workspace Key Feature: Writing, summarizing within Notion Pricing: $10/user/mo Best For: Notion users wanting AI integration URL: notion.so/product/ai
API Access
For developers and advanced users who want to integrate AI into their own apps.
OpenAI API
Models Available:
- GPT-5: $1.25-$10/1M tokens
- GPT-5 mini: $0.25-$2/1M tokens
- GPT-4o: $2.50-$10/1M tokens
Key Features:
- Function calling
- JSON mode
- Vision (image input)
- Text-to-speech
- Speech-to-text
- Embeddings
Documentation: platform.openai.com/docs
Quickstart:
from openai import OpenAI
client = OpenAI(api_key="your-key")
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
Anthropic API
Models Available:
- Claude Opus 4.7: $15-$75/1M tokens
- Claude Sonnet 4.6: $3-$15/1M tokens
- Claude Haiku 4.5: $1-$5/1M tokens
Key Features:
- 200K context window (1M on Opus 4.7)
- Tool use (function calling)
- Vision support
- Streaming responses
Documentation: docs.anthropic.com
Quickstart:
from anthropic import Anthropic
client = Anthropic(api_key="your-key")
message = client.messages.create(
model="claude-sonnet-4-6",
max_tokens=1024,
messages=[{"role": "user", "content": "Hello!"}]
)
print(message.content[0].text)
Google AI API
Models Available:
- Gemini 2.5 Pro: $1.25-$10/1M tokens
- Gemini 2.5 Flash: $0.30-$2.50/1M tokens
Key Features:
- 1-2M token context
- Multimodal (text, images, video, audio)
- Free tier (60 requests/min)
- Fast inference
Documentation: ai.google.dev/docs
Quickstart:
import google.generativeai as genai
genai.configure(api_key="your-key")
model = genai.GenerativeModel('gemini-1.5-pro')
response = model.generate_content("Hello!")
print(response.text)
Open Source / Local Models
Ollama - Run LLMs locally
- Models: Llama 3, Mistral, Gemma, etc.
- Pricing: Free (your hardware)
- Requirements: 8-16GB RAM minimum
- URL: ollama.ai
LM Studio - GUI for local models
- Easy model management
- Chat interface
- Local API server
- URL: lmstudio.ai
Hugging Face - Model hub and inference
- Thousands of open models
- Free inference API (rate limited)
- URL: huggingface.co
Choosing the Right Tool
For General Use
Recommended: ChatGPT Plus or Claude Pro Why: Versatile, reliable, constantly improving
For Code
Recommended: GitHub Copilot + Cursor or ChatGPT Plus Why: Deep IDE integration + powerful reasoning
For Research
Recommended: Claude Pro or Gemini Advanced Why: Long context windows, good at analysis
For Business
Recommended: ChatGPT Enterprise or Claude Team Why: Admin controls, privacy, higher limits
For Privacy
Recommended: Ollama + local models Why: Everything stays on your machine
For Cost Optimization
Recommended: API access with GPT-5 mini or Claude Haiku 4.5 Why: Pay only for what you use, cheaper models for simple tasks
For Current Information
Recommended: Perplexity or ChatGPT with browsing Why: Real-time web search with citations
For Images
Recommended: Midjourney (best quality) or DALL-E (more accessible) Why: Highest quality output vs. convenience
Feature Comparison
| Feature | ChatGPT | Claude | Gemini | Copilot |
|---|---|---|---|---|
| Context Window | 128K | 200K | 2M | 128K |
| Web Search | Yes (Plus) | No | Yes | Yes |
| Image Input | Yes | Yes | Yes | Yes |
| Image Output | DALL-E | No | Yes | DALL-E |
| Code Execution | Yes | No | No | No |
| Plugins/Extensions | Many | Limited | Limited | Some |
| Mobile App | Yes | Yes | Yes | Yes |
| Voice Mode | Yes | No | No | Yes |
| API Available | Yes | Yes | Yes | Yes (Azure) |
| Free Tier | Limited | Limited | Generous | Decent |
Browser Extensions
ChatGPT Everywhere
- Use ChatGPT on any website
- Highlight text → right-click → AI assist
- Chrome, Firefox, Edge
Merlin
- AI sidebar on any website
- Multiple models (GPT-5, Claude, etc.)
- Summarize, explain, translate
Monica
- AI copilot in browser
- Quick access via Cmd/Ctrl+M
- Translation, writing, summarizing
Compose AI
- AI autocomplete for writing
- Gmail, Docs, anywhere
- Speed up email writing
AIPRM
- Curated prompts for ChatGPT
- One-click prompt templates
- Community-sourced
Mobile Apps
All major platforms have excellent mobile apps:
ChatGPT (iOS/Android)
- Voice conversations
- Image input
- History sync
- Widget support
Claude (iOS/Android)
- Clean interface
- Long context on mobile
- Image analysis
Gemini (iOS/Android)
- Google integration
- Fast responses
- Voice input
Microsoft Copilot (iOS/Android)
- Free GPT-5 access
- Image generation
- Voice mode
Integration Platforms
Zapier + AI
- Connect AI to 5,000+ apps
- Automate workflows with AI
- No coding required
- URL: zapier.com/ai
Make (formerly Integromat)
- Visual automation builder
- AI integrations
- Complex workflows
- URL: make.com
LangChain
- Build AI applications
- Chain multiple LLM calls
- RAG, agents, tools
- URL: langchain.com
LlamaIndex
- Data framework for LLMs
- RAG focus
- Connect to any data source
- URL: llamaindex.ai
Prompt Management Tools
PromptBase
- Buy and sell prompts
- Marketplace for effective prompts
- URL: promptbase.com
Dust
- Prompt management and deployment
- Team collaboration
- URL: dust.tt
PromptLayer
- Prompt tracking and analytics
- Version control for prompts
- Team features
- URL: promptlayer.com
Cost Management
Estimate Your Usage
- Consumer Plan: Fixed $20/mo = unlimited for most personal use
- API: Variable
- Track tokens per request
- Estimate monthly volume
- Compare to fixed plans
Optimization Strategies
Use Tiered Models:
- Simple tasks → Cheaper models (GPT-5 mini, Claude Haiku 4.5)
- Complex tasks → Premium models (GPT-5, Claude Opus 4.7)
Manage Context:
- Don't include unnecessary context
- Clear conversations when done
- Use context window efficiently
Batch Requests:
- Combine multiple questions
- Use parallel processing
- Avoid redundant calls
Cache Results:
- Save common responses
- Don't regenerate identical content
- Use RAG for repetitive queries
Price Comparison (1M tokens)
Input Tokens:
- GPT-5: $1.25
- Claude Sonnet 4.6: $3.00
- Gemini 2.5 Pro: $1.25
- GPT-5 mini: $0.25
Output Tokens (typically 3-5x input):
- GPT-5: $10.00
- Claude Sonnet 4.6: $15.00
- Gemini 2.5 Pro: $10.00
- GPT-5 mini: $2.00
Example: 100 requests with 2K input + 500 output tokens each
- GPT-5: ~$0.75
- Claude Sonnet 4.6: ~$1.35
- Gemini 2.5 Pro: ~$0.75
Conclusion: For 100 requests/day, API is cheaper. For <10 requests/day, consumer plan better.
Security and Privacy
What to Know
Consumer Plans:
- Free tiers may use data for training
- Paid plans typically don't (verify terms)
- Conversations stored in provider's systems
- Can usually delete history
APIs:
- Generally not used for training
- You control data storage
- Check data retention policies
- Enterprise plans have strict guarantees
Best Practices:
- Never share: passwords, API keys, PII, confidential business data
- Use: generic examples, public information, anonymized data
- Consider: self-hosted models for sensitive work
- Enable: available privacy settings
Compliance
For business use, check:
- GDPR compliance (EU data)
- HIPAA compliance (healthcare)
- SOC 2 certification (security)
- Data residency requirements
Enterprise plans from major providers typically offer these.
Staying Current
The AI landscape changes rapidly. How to keep up:
Follow Key Sources
- OpenAI Blog
- Anthropic News
- Google AI Blog
- r/LocalLLaMA - open source focus
- AI Explained (YouTube)
Try New Tools
- Dedicate 1 hour/month to testing new AI tools
- Join beta programs
- Follow Product Hunt for AI launches
Community
- Twitter/X: Follow AI researchers and practitioners
- Discord: Join AI-focused servers
- Reddit: r/ChatGPT, r/ClaudeAI, r/artificial
Quick Decision Matrix
Choose ChatGPT if:
- You want the most versatile option
- You need plugins and extensions
- You want DALL-E integration
- You're a developer using many integrations
Choose Claude if:
- You work with long documents
- You need superior analysis
- You prioritize safety and reliability
- You want the most helpful responses
Choose Gemini if:
- You want huge context windows (1M+ tokens)
- You're a heavy Google user
- You want generous free tier
- You need fast multimodal processing
Choose API Access if:
- You're building an application
- You have specific integration needs
- You want fine-grained control
- Your usage is unpredictable
Choose Local Models if:
- Privacy is paramount
- You have good hardware
- You want customization
- You want to avoid API costs
Summary
Key Takeaways:
- Major platforms: ChatGPT, Claude, Gemini, all excellent
- Specialized tools exist for code, images, research
- APIs give flexibility but require technical skill
- Choose based on your specific needs and use cases
- Local models offer privacy at the cost of convenience
- The landscape evolves fast, so stay current
Action Items:
- Sign up for at least one major platform
- Try 2-3 specialized tools relevant to your work
- Bookmark documentation for future reference
- Set a calendar reminder to check for updates quarterly
Next Steps:
- Move to Chapter 05 for personal use cases
- Experiment with your chosen platform(s)
- Join relevant communities
- Start building your AI toolkit
Further Reading
- OpenAI Platform Documentation
- Anthropic Documentation
- Google AI Documentation
- There's An AI For That - AI tool directory
- Future Tools - Curated AI tools