mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
Merge origin/litellm_internal_staging
This commit is contained in:
commit
dc470f6a17
2 changed files with 5 additions and 5 deletions
|
|
@ -201,8 +201,8 @@ async def test_reasoning_effort_grid(
|
|||
|
||||
|
||||
def test_grid_cell_count() -> None:
|
||||
assert len(_PARAMS) == 30 * 11, (
|
||||
f"expected 330 cells (30 provider x model combos x 11 efforts), "
|
||||
assert len(_PARAMS) == 31 * 11, (
|
||||
f"expected 341 cells (31 provider x model combos x 11 efforts), "
|
||||
f"got {len(_PARAMS)}"
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -613,13 +613,13 @@ async def test_openai_via_gemini_streaming_bridge():
|
|||
assert len(printed_chunks) > 0
|
||||
|
||||
|
||||
def test_openai_deepresearch_model_bridge():
|
||||
def test_openai_responses_only_model_bridge():
|
||||
"""
|
||||
Test that the deepresearch model bridge works correctly
|
||||
Test that the responses-only model bridge works correctly
|
||||
"""
|
||||
litellm._turn_on_debug()
|
||||
response = litellm.completion(
|
||||
model="o3-deep-research-2025-06-26",
|
||||
model="gpt-5.5-pro",
|
||||
messages=[{"role": "user", "content": "Hey, how's it going?"}],
|
||||
tools=[
|
||||
{"type": "web_search_preview"},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue