Ishaan Jaffer
acadaca7e7
doc review 1
2025-12-21 00:06:06 +05:30
Alexsander Hamir
5a76aada3c
[Fix] CI/CD - responses_api_testing ( #18295 )
2025-12-20 10:27:58 -08:00
Ishaan Jaffer
01a517a2c6
v 1.80.11
2025-12-20 23:48:10 +05:30
Ishaan Jaffer
148715541c
test compl openai orgs
2025-12-20 23:41:29 +05:30
Ishaan Jaffer
de65f0e777
TestAzureOpenAIO3Mini
2025-12-20 23:18:19 +05:30
yuneng-jiang
99da2d413d
Merge pull request #18292 from BerriAI/litellm_ui_build_01
...
[Infra] UI Build
2025-12-20 09:24:08 -08:00
yuneng-jiang
eba343b55c
UI Build
2025-12-20 09:22:57 -08:00
Ishaan Jaffer
179eb8815d
test_azure_safety_result
2025-12-20 22:40:53 +05:30
Ishaan Jaffer
987c9a608b
TestAzureOpenAIO3Mini
2025-12-20 22:37:59 +05:30
Ishaan Jaffer
b1090db927
test_openai_stream_options_call
2025-12-20 22:35:21 +05:30
Emerson Gomes
9002f75277
Require auth for MCP connection test
2025-12-20 11:01:41 -06:00
Ishaan Jaffer
49fecf0f1e
bump: version 1.80.10 → 1.80.11
2025-12-20 21:52:48 +05:30
Ishaan Jaffer
9f205b0323
TestAzureOpenAIO3Mini
2025-12-20 21:52:28 +05:30
Ishaan Jaffer
5bf2511425
fix anthropic iterator
2025-12-20 21:47:46 +05:30
Ishaan Jaffer
7eb2af1959
test bad org fix
2025-12-20 21:43:27 +05:30
Ishaan Jaffer
abf14663ed
test_slack_gif_skill_creates_gif
2025-12-20 21:35:25 +05:30
dependabot[bot]
a15f30ba7d
chore(deps): bump altcha-lib from 1.3.0 to 1.4.1 in /docs/my-website ( #18017 )
...
Bumps [altcha-lib](https://github.com/altcha-org/altcha-lib ) from 1.3.0 to 1.4.1.
- [Release notes](https://github.com/altcha-org/altcha-lib/releases )
- [Commits](https://github.com/altcha-org/altcha-lib/compare/1.3.0...1.4.1 )
---
updated-dependencies:
- dependency-name: altcha-lib
dependency-version: 1.4.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-20 21:24:01 +05:30
Ishaan Jaffer
d808e10e53
fix DB URL
2025-12-20 21:17:42 +05:30
Ishaan Jaffer
bae488d9cd
skip GITGUARDIAN_API_KEY
2025-12-20 20:53:22 +05:30
Ishaan Jaffer
6112160a16
Revert "[Fix] Security - Remove example API keys with high entropy ( #18255 )"
...
This reverts commit 24edbccf5c .
2025-12-20 20:48:11 +05:30
Ishaan Jaffer
7232039779
test fixes
2025-12-20 15:38:20 +05:30
Ishaan Jaffer
a38f98057f
fix
2025-12-20 15:21:00 +05:30
Ishaan Jaffer
7d28485cb5
test_amazon_titan_image_gen
2025-12-20 15:16:55 +05:30
Ishaan Jaffer
816cb17f4e
fix dcker containers
2025-12-20 15:12:44 +05:30
Ishaan Jaffer
eec05c036a
test_create_skill_sdk
2025-12-20 15:08:31 +05:30
Ishaan Jaffer
b351472f89
new build
2025-12-20 14:55:41 +05:30
Ishaan Jaffer
899a9780d5
add LiteLLM_SkillsTable_pkey
2025-12-20 14:50:19 +05:30
Ishaan Jaffer
c13b4c5514
test_aaapass_through_endpoint_pass_through_keys_langfuse
2025-12-20 14:36:59 +05:30
Ishaan Jaffer
627d615322
test_amazon_titan_image_gen
2025-12-20 14:36:50 +05:30
Ishaan Jaffer
859474dd44
fix patch
2025-12-20 14:00:42 +05:30
Ishaan Jaffer
13fa573d61
code QA fixes
2025-12-20 13:56:04 +05:30
Ishaan Jaffer
c1b116c5f5
fix
2025-12-20 13:54:05 +05:30
Cesar Garcia
138b415e81
fix(responses-api): use list format with input_text for tool results ( #18257 )
...
The Responses API expects tool results to use input_text/input_image types,
not output_text. This fix ensures consistent list format for all tool results:
- String content → [{"type": "input_text", "text": "..."}]
- Image content → [{"type": "input_image", "image_url": "..."}]
This resolves the conflict between tests that expected different formats
and aligns with OpenAI's Responses API requirements.
Fixes the regression introduced in #18226 .
2025-12-20 13:46:14 +05:30
Ishaan Jaffer
f3587ddfb0
linting fix
2025-12-20 13:44:28 +05:30
Krrish Dholakia
0ff13453ea
fix(types/utils.py): add order param to litellm_params
...
Fixes https://github.com/BerriAI/litellm/issues/18259
2025-12-20 13:30:11 +05:30
Krrish Dholakia
a3b6c6c0a7
fix: fix doc
2025-12-20 13:28:58 +05:30
Lucas Rothman
b981fddfaa
fix(gemini): properly catch context window exceeded errors
...
Fixes #18282
This PR fixes two issues with Gemini context window error handling:
1. **Pattern matching for Gemini 2.0 Flash**: The previous pattern
'input token count exceeds the maximum number of tokens allowed'
doesn't match Gemini 2.0 Flash errors which include dynamic token
counts like '(2800010)' in the message. Split into shorter patterns
that work with both formats.
2. **Add context window check to Gemini block**: The
is_error_str_context_window_exceeded() check was only called for
OpenAI-compatible providers, not for Gemini/Vertex AI. Added the
check to the Gemini-specific error handling block.
Test cases added for both Gemini 2.0 Flash and 2.5/3 error formats.
2025-12-19 23:20:04 -08:00
Eric84626
7a122ac350
Merge pull request #5 from Eric84626/feature/fix_mcp_closed_resource_error
...
fix: upgraded mcp sdk depency version for fixing ClosedResourceError
2025-12-20 14:29:40 +08:00
Eric84626
36a369a747
fix: upgraded mcp sdk depency version for fixing ClosedResourceError
2025-12-20 14:28:52 +08:00
Eric84626
ce3e598fa7
Merge pull request #4 from Eric84626/feature/fix_mcp_401_error_startup_proxyserver
...
fix: removed initialize the tool name to MCP server name mapping(oaut…
2025-12-20 14:14:52 +08:00
Eric84626
0306f02e74
fix: removed initialize the tool name to MCP server name mapping(oauth2) on startup for avoiding 401 error
2025-12-20 14:13:18 +08:00
Eric84626
b4d61f4f60
Merge pull request #3 from Eric84626/feature/add_scopes_supported
...
fix: added RFC RECOMMENDED property(scopes_supported) to protected re…
2025-12-20 13:28:42 +08:00
Eric84626
684fba42ea
fix: added RFC RECOMMENDED property(scopes_supported) to protected resource and authorization server metadata
2025-12-20 13:22:29 +08:00
Eric84626
c1954952c6
Merge pull request #2 from Eric84626/feature/add_grant_type_for_mcp_register_api
...
fix: added additional grant type into oauth_authorization_server resp…
2025-12-20 12:17:52 +08:00
Eric84626
c5f5867877
Merge pull request #1 from Eric84626/feature/fix_metadata_url_auth_servers_url_with_rootpath
...
fix: fixed the issue of handling root paths when processing Discovery…
2025-12-20 12:16:35 +08:00
Eric84626
3a2ab6b0d1
fix: added additional grant type into oauth_authorization_server response for fixing mcp auth register bad request issue
2025-12-20 11:55:12 +08:00
Eric84626
7ddab06bed
fix: fixed the issue of handling root paths when processing Discovery protected resource metadata and authorization server metadata URLs.
2025-12-20 11:35:20 +08:00
yuneng-jiang
ffcac2eebc
Allow deleting key expiry
2025-12-19 18:04:04 -08:00
Eric84626
96f7529f11
Merge branch 'BerriAI:main' into main
2025-12-20 09:42:41 +08:00
yuneng-jiang
4ca211a6f7
Merge pull request #18275 from BerriAI/litellm_ui_resolve_team_id
...
[Feature] UI - Resolve Team ID to Team Alias in Usage Page
2025-12-19 16:52:00 -08:00