#25191 [Bug]: websearch_interception agentic loop not triggered for Bedrock via /chat/completions
### Check for existing issues
- [x] I have searched the existing issues and checked that my issue is not a duplicate.
### What happened?
A bug happened! when using websearch_interception with AWS Bedrock and the /chat/completions endpoint, the agentic loop is not executed. The model correctly returns a tool_calls response with litellm_web_search, but LiteLLM does not intercept it and execute the search automatically.
The same setup works correctly when using the /v1/messages (Anthropic Messages API) endpoint.
LiteLLM should automatically intercept the litellm_web_search tool call, execute the search via the configured search provider, and return the final answer — just like it does for /v1/messages.
Configuration: ``` model_list: - model_name: claude-sonnet-4-6 litellm_params: model: bedrock/us.anthropic.claude-sonnet-4-6 aws_region_name: us-east-1
litellm_settings: callbacks: - websearch_interception websearch_interception_params: enabled_providers: - bedrock search_tool_name: google-search
search_tools: - search_tool_name: google-search litellm_params: search_provider: google_pse api_key: os.environ/GOOGLE_PSE_API…