Before submitting your bug report
Relevant environment info
- OS: macOS
- Continue version: 2.0.0
- IDE version:
- Model:gpt-5.5
- config:
name: Main Config
version: 1.0.0
schema: v1
models:
- name: GPT-5.5
provider: openai
model: gpt-5.5
apiKey: ${OPENAI_API_KEY}
roles:
- chat
- edit
- apply
Description
When using GPT-5.5 in Agent mode, Continue successfully executes terminal commands, but fails immediately after the tool execution.
The terminal command completes successfully, however Continue displays:
Error handling model response
and the request fails with:
{
"message":"Item 'fc_...' of type 'function_call'
was provided without its required 'reasoning' item:
'rs_...'.",
"type":"invalid_request_error",
"param":"input"
}
To reproduce
⸻
Reproduction
- Configure Continue with OpenAI GPT-5.5.
- Open a local git repository.
- Ask Continue to analyze all *.hcl files.
- Continue invokes the Terminal tool.
- The terminal command completes successfully.
- Continue crashes while processing the model response.
Example command executed:
from pathlib import Path
for p in Path(".").rglob("*.hcl"):
print(p)
The command finishes correctly.
The failure happens after tool execution.
⸻
Additional information
This issue is reproducible.
Initially I suspected DNS or NFS latency, but I reproduced it with:
- local repository
- local filesystem (no NFS)
- successful OpenAI API connectivity
- successful terminal execution
So the failure appears unrelated to networking.
Log output
The OpenAI Responses API works correctly when called directly with curl.
⸻
Error
Item 'fc_...' of type 'function_call' was provided without its required 'reasoning' item:
'rs_...'.
type=invalid_request_error
param=input
Before submitting your bug report
Relevant environment info
Description
When using GPT-5.5 in Agent mode, Continue successfully executes terminal commands, but fails immediately after the tool execution.
The terminal command completes successfully, however Continue displays:
Error handling model response
and the request fails with:
To reproduce
⸻
Reproduction
Example command executed:
The command finishes correctly.
The failure happens after tool execution.
⸻
Additional information
This issue is reproducible.
Initially I suspected DNS or NFS latency, but I reproduced it with:
So the failure appears unrelated to networking.
Log output