You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/providers/openai.md
+87-12Lines changed: 87 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,9 @@
1
1
---
2
2
sidebar_label: OpenAI
3
-
description: Connect Roo Code to OpenAI's official API for access to GPT-4o, o1, and o3-mini models with advanced reasoning capabilities.
3
+
description: Connect Roo Code to OpenAI's official API for access to GPT-5, GPT-4o, o1, and o3 models with advanced reasoning capabilities and verbosity control.
4
4
keywords:
5
5
- OpenAI
6
+
- GPT-5
6
7
- GPT-4o
7
8
- o1 models
8
9
- o3-mini
@@ -11,12 +12,14 @@ keywords:
11
12
- reasoning models
12
13
- API key
13
14
- official OpenAI API
15
+
- verbosity
16
+
- reasoning effort
14
17
image: /img/social-share.jpg
15
18
---
16
19
17
20
# Using OpenAI With Roo Code
18
21
19
-
Roo Code supports accessing models directly through the official OpenAI API.
22
+
Roo Code supports accessing models directly through the official OpenAI API, including the latest GPT-5 family with advanced features like reasoning effort control and verbosity settings.
description: Introduces GPT-5 model support with verbosity controls and fixes XML parsing and MCP error display issues.
3
+
keywords:
4
+
- roo code 3.25.10
5
+
- gpt-5
6
+
- openai models
7
+
- verbosity controls
8
+
- bug fixes
9
+
image: /img/social-share.jpg
10
+
---
11
+
12
+
# Roo Code 3.25.10 Release Notes (2025-08-07)
13
+
14
+
This release introduces support for OpenAI's GPT-5 models with verbosity controls and fixes important bugs in XML parsing and error message display.
15
+
16
+
## GPT-5 Model Support
17
+
18
+
We've added support for OpenAI's latest GPT-5 model family ([#6819](https://github.com/RooCodeInc/Roo-Code/pull/6819)):
19
+
20
+
-**GPT-5 Models**: Three new model variants are now available:
21
+
-`gpt-5-2025-08-07`: The full GPT-5 model, now set as the default for OpenAI Native provider
22
+
-`gpt-5-mini-2025-08-07`: A smaller, faster variant for quick responses
23
+
-`gpt-5-nano-2025-08-07`: The most compact version for resource-constrained scenarios
24
+
25
+
-**Verbosity Controls**: New settings to control model output detail levels (low, medium, high), allowing you to fine-tune response length and detail based on your needs
26
+
27
+
-**Experimental Model**: Also includes the experimental `nectarine-alpha` model for testing cutting-edge capabilities
28
+
29
+
All GPT-5 models support streaming responses for real-time interaction.
30
+
31
+
> **📚 Documentation**: See [OpenAI Provider Guide](/providers/openai) for detailed information about GPT-5 models and verbosity settings.
32
+
33
+
## Bug Fixes
34
+
35
+
***XML Parsing**: Fixed errors when using the apply_diff tool with complex XML files containing special characters by implementing proper CDATA sections ([#6811](https://github.com/RooCodeInc/Roo-Code/pull/6811))
36
+
***MCP Error Messages**: Fixed an issue where MCP server errors displayed raw translation keys instead of proper error messages ([#6821](https://github.com/RooCodeInc/Roo-Code/pull/6821))
description: Adds new Fireworks AI models, fixes token calculation, and improves chat input focus.
3
+
keywords:
4
+
- roo code 3.25.9
5
+
- fireworks ai models
6
+
- glm-4.5
7
+
- bug fixes
8
+
image: /img/social-share.jpg
9
+
---
10
+
11
+
# Roo Code 3.25.9 Release Notes (2025-08-07)
12
+
13
+
This release adds new AI models to the Fireworks provider, fixes token calculation issues, and improves the chat creation experience.
14
+
15
+
## Provider Updates
16
+
17
+
***Fireworks AI Models**: Added GLM-4.5 series models (355B and 106B parameters with 128K context) and OpenAI gpt-oss models (20b for edge deployments, 120b for production use) to expand model selection options (thanks alexfarlander!) ([#6784](https://github.com/RooCodeInc/Roo-Code/pull/6784))
18
+
19
+
## QOL Improvements
20
+
21
+
***Chat Input Focus**: The chat input now automatically focuses when creating a new chat via the + button, allowing you to start typing immediately ([#6689](https://github.com/RooCodeInc/Roo-Code/pull/6689))
22
+
23
+
## Bug Fixes
24
+
25
+
***Token Calculation**: Fixed rounding errors that prevented certain models like GLM-4.5 from working properly by ensuring max output tokens are correctly rounded up (thanks markp018!) ([#6808](https://github.com/RooCodeInc/Roo-Code/pull/6808))
26
+
27
+
## Misc Improvements
28
+
29
+
***Cloud Integration**: Reverted to using the npm package version of @roo-code/cloud for improved build stability and maintenance ([#6795](https://github.com/RooCodeInc/Roo-Code/pull/6795))
0 commit comments