#35346 tests/test_litellm/interactions/test_openapi_compliance.py fails: Google Interactions API spec dropped Content discriminator and added "queued" status
## Bug Description
`tests/test_litellm/interactions/test_openapi_compliance.py` fetches Google's live Interactions API OpenAPI spec (`https://ai.google.dev/static/api/interactions.openapi.json`) on every CI run and asserts against exact snapshots of specific schema fields. Google has changed the live spec in two ways that now fail these pinned assertions:
1. `TestRequestCompliance::test_content_schema_uses_discriminator` - asserts `"discriminator" in content_schema` for the `Content` schema. The live spec no longer includes a `discriminator` key on `Content`; it's now a plain `oneOf` with no discriminator. 2. `TestResponseCompliance::test_status_enum_values` - asserts `Interaction.properties.status.enum == ["in_progress", "requires_action", "completed", "failed", "cancelled", "incomplete", "budget_exceeded"]`. The live spec now includes an additional `"queued"` value at the end of that enum.
This is expected/by-design breakage per the test's own comments (`test_status_enum_values` notes "this test intentionally breaks CI when Google changes the live spec"), but it currently fails on the base branch itself, independent of any application code change, so every PR's CI run is red o…