Have you ever thought to yourself: I really don't want to make this PowerPoint.
Good news: ChatGPT can now create and edit presentations directly in PowerPoint.
Build, update, understand, and polish presentations directly in PowerPoint while keeping slides editable.
Now in beta, we’d love your feedback 👀
Have you ever thought to yourself: I really don't want to make this PowerPoint.
Good news: ChatGPT can now create and edit presentations directly in PowerPoint.
Build, update, understand, and polish presentations directly in PowerPoint while keeping slides editable.
Now in beta, we’d love your feedback 👀
Codex 0.102 is out with experimental multi-agent support.
TUI:
enable it under /experimental -> multi agents
config:
[features]
multi_agent = true
3 agents included:
- default - mixed tasks
"spawn default agent to debug the failure and propse fix"
- explorer - codebase research
"spawn explorer to map payment flow and check risks, no edits"
- worker - coding & bug fixes
"spawn worker for src/auth/* and implement token refresh & run tests"
you can define custom agents too. here is an example:
[features]
multi_agent = true
[agents .fast_worker]
description = "Fast scoped implementation agent."
config_file = "/Users/<you>/.codex/agents/fast_worker.toml"
~/.codex/agents/fast_worker.toml
model = "gpt-5.3-spark"
model_reasoning_effort = "low"
model_verbosity = "low"
Bonus:
current default is 6 agent threads per session.
You can customize it with
[agents]
max_threads = 12