fix(tests): add INCOMPLETE to interactions status enum expected values#21943
Merged
jquinter merged 1 commit intoBerriAI:mainfrom Feb 23, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile SummaryAdds the
Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| litellm/types/interactions/generated.py | Adds INCOMPLETE = 'INCOMPLETE' to the Status3 enum, aligning the type with the upstream Google Interactions API spec. No issues found. |
| tests/test_litellm/interactions/test_openapi_compliance.py | Updates the hardcoded expected status enum values to include INCOMPLETE, matching the live OpenAPI spec. No issues found. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["Google Interactions API\n(upstream spec)"] -->|"adds INCOMPLETE status"| B["litellm/types/interactions/generated.py\nStatus3 enum"]
B -->|"exported as"| C["InteractionStatus\n(__init__.py alias)"]
C -->|"used by"| D["CreateModelInteractionParams\n(status field)"]
C -->|"used by"| E["CreateAgentInteractionParams\n(status field)"]
B -->|"validated by"| F["test_openapi_compliance.py\ntest_status_enum_values"]
Last reviewed commit: f94d0fe
Google added INCOMPLETE to the Interactions API OpenAPI spec status enum. Update both the Status3 enum in the SDK types and the test's expected values to match. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
61ebd76 to
f94d0fe
Compare
Contributor
Author
|
@greptile-apps re-review this PR |
damhau
pushed a commit
to damhau/litellm
that referenced
this pull request
Feb 26, 2026
…plete-status fix(tests): add INCOMPLETE to interactions status enum expected values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
INCOMPLETEto the Interactions API OpenAPI spec status enumtest_status_enum_valuesto match the live specTest plan
🤖 Generated with Claude Code