#33036 [Bug]: Fireworks content-embedded tool calls return finish_reason=stop instead of tool_calls
### What happened?
Fireworks AI function-calling models return the tool call as a JSON string in `message.content` (issue #7209). LiteLLM converts that into `message.tool_calls`, but the response's `finish_reason` stays `"stop"` instead of `"tool_calls"`, so OpenAI-style agent loops treat the turn as finished and never execute the tool.
In `litellm/llms/fireworks_ai/chat/transformation.py`, `transform_response` builds the response with `ModelResponse(**completion_response)` directly — bypassing the shared `convert_to_model_response_object` fixup that sets `finish_reason="tool_calls"` — and then moves content into `message.tool_calls` **without** updating `finish_reason`.
### Minimal reproduction (offline, no network/keys)
```python import json, httpx from unittest.mock import MagicMock from litellm.llms.fireworks_ai.chat.transformation import FireworksAIConfig from litellm.types.utils import ModelResponse
f = FireworksAIConfig() body = {"id": "x", "object": "chat.completion", "created": 1, "model": "accounts/fireworks/models/llama", "choices": [{"index": 0, "finish_reason": "stop", "message": {"role": "assistant", "content": json.dumps({"name": "get_weather", "argu…