Skip to content

Getting Started with OpenAI

OpenAI offers two products: ChatGPT (conversational AI) and Codex (AI agent for working with files and code). Most people start with ChatGPT — Codex and developer tools are optional.

Time: ~20 minutes for Part 1, ~10 minutes for Part 2 Requires: Nothing — this is where you start.


Part 1 — ChatGPT

The conversational AI assistant. Set up your account, install apps, and configure it for the best experience.

1. Create Your Account

  1. Go to chatgpt.com and sign up (or sign in)
  2. Upgrade to ChatGPT Plus ($20/month) or ChatGPT Team for the full feature set

Official docs: OpenAI Help Center — Getting started


2. Install ChatGPT Apps

Install all available apps so you have the right tool for every situation.

Sign in to each app with your account.


3. Configure Custom Instructions

Tell ChatGPT about yourself so every conversation starts with context about your role and preferences.

  1. Click your profile picture (bottom-left) → Customize ChatGPT
  2. Fill in both sections:
    • What would you like ChatGPT to know about you? — your role, industry, what you're working on
    • How would you like ChatGPT to respond? — tone, length, format preferences
  3. Click Save

Starter template:

I'm a [your role] in [your industry]. I'm learning to build AI-powered workflows and agents. I prefer concise answers with practical examples. When I ask about technical concepts, explain them in business terms first, then provide the technical details.

Official docs: OpenAI Help — Custom Instructions


4. Enable Memory

Memory lets ChatGPT remember relevant details from your conversations over time.

  1. Click your profile picture → SettingsPersonalization
  2. Toggle Memory to on

You can view and manage memories at any time: Settings → Personalization → Manage Memory.

Official docs: OpenAI Help — Memory FAQ


5. Connect Apps

ChatGPT connects to external tools through Connected Apps.

  1. Click your profile picture → SettingsConnected apps
  2. Browse available integrations (Google Drive, Notion, Zapier, etc.)
  3. Click Connect on the apps you use

Official docs: OpenAI Help — Apps in ChatGPT


Part 2 — OpenAI Platform

Codex is OpenAI's AI agent that works directly with your files — useful for coding, file operations, research, and automation. Codex is included with ChatGPT Plus, Pro, Business, Enterprise, and Edu plans.

This part is optional

If you only need ChatGPT for conversations, you're done after Part 1. Come back to Part 2 when you're ready to work with files and code.

1. Install Codex

There are three ways to use Codex — pick whichever fits your workflow:

A dedicated application for managing multiple AI agents in parallel. Currently macOS only (Windows coming soon).

  1. Download from openai.com/codex
  2. Install and sign in with your ChatGPT account

Official docs: Codex App

Run Codex from your terminal. Works on macOS, Windows, and Linux. Requires Node.js 22+.

npm install -g @openai/codex

Run codex and sign in with your ChatGPT account when prompted:

codex

Verify:

codex --version

Official docs: Codex CLI

Use Codex inside VS Code or Cursor. See AI Code Editor Setup for installation instructions.

Official docs: Get started with Codex · Using Codex with your ChatGPT plan


2. Create a Platform Account (Optional)

The OpenAI Platform (platform.openai.com) is where you manage API keys, monitor usage, and access developer tools. You need this if you want to authenticate Codex CLI with an API key instead of your ChatGPT account, or if you're building applications with the OpenAI API.

  1. Go to platform.openai.com and sign in with your OpenAI account
  2. Navigate to API keys to create a key if needed

Most people don't need this — Codex authenticates directly through your ChatGPT subscription.

Official docs: OpenAI Platform — Quickstart


You're Done When

Part 1 — ChatGPT:

  • OpenAI account created with a paid ChatGPT plan
  • ChatGPT desktop app installed and signed in
  • ChatGPT mobile app installed on at least one device
  • Custom instructions configured with your role and preferences
  • Memory enabled
  • At least one connected app set up (optional)

Part 2 — OpenAI Platform:

  • Codex installed — desktop app, CLI, or IDE extension (optional)
  • Platform account created at platform.openai.com (optional)