mirror of
https://github.com/tiennm99/litellm.git
synced 2026-08-05 04:22:19 +00:00
+11




![greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)




yuneng-jiang
GitHub
Michael Riad Zaky
Mateo Wang
greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
ryan-crabbe-berri
user
Cursor Agent
Claude
shivam
Mateo Wang
Yassin Kortam
Krrish Dholakia
shin-berri
Sameer Kankute
Sameer Kankute
Michael-RZ-Berri
harish-berri
Yassin Kortam
Michael Riad Zaky
Krrish Dholakia
6ff668c7aa
* default requested_model to empty string on litellm-side rejects * Update litellm/router.py Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * fix: scope key access_group_ids override by team's assigned groups A team member could set any access_group_ids on their key (e.g. a group assigned only to a different team) and override the team's model restriction. Intersect the key's access_group_ids with team_object.access_group_ids in _key_access_group_grants_model so foreign groups are dropped before model expansion. Adds a regression test that asserts expansion is never called for foreign groups. * [Fix] Proxy: Skip Personal Budget Hook When Reservation Covers Counter The reservation path (PR #26845) atomically pre-fills `spend:user:{user_id}` and admits at the strict-`<` boundary. The legacy `_PROXY_MaxBudgetLimiter` pre-call hook re-reads the same counter with `>=`, so a reservation that fills the counter to exactly `max_budget` (e.g. a request without a `max_tokens` cap that falls back to reserving the smallest remaining headroom) is rejected by the hook even though the reservation already admitted it. Skip the hook when the request's active `budget_reservation` covers `spend:user:{user_id}`. The reservation is the source of truth for that counter cross-pod; the legacy `>=` path remains in place for requests without a reservation (e.g. paths that bypass the reservation entirely). Reproduces as `tests/otel_tests/test_prometheus.py::test_user_budget_metrics` on a fresh user with `max_budget=10` calling `fake-openai-endpoint` without `max_tokens`. Adds focused unit coverage in `tests/test_litellm/proxy/hooks/test_max_budget_limiter.py`. * harden bedrock file bucket validation * Fix syntax errors from botched merge in router.py * Fix Vertex batch output edge cases * [Fix] RBAC: Drop management_routes Write Fallback for Admin Viewer Greptile P1: the unsafe-method branch of `_check_proxy_admin_viewer_access` ended with a blanket `if route in management_routes: return`. That set is a mix of reads (info/list — handled via the safe-method GET branch above) and writes. The fallback let Admin Viewer POST to write endpoints not enumerated in `_ADMIN_VIEWER_BLOCKED_WRITE_ROUTES`, including: - /team/block, /team/unblock, /team/permissions_update - /jwt/key/mapping/{new,update,delete} - /key/bulk_update - /key/{key_id}/reset_spend Remove the fallback. The two remaining allow sets (admin_viewer_routes and global_spend_tracking_routes) are both read-only, so removal does not affect the legitimate POST-as-read cases (e.g. /spend/calculate, which is in spend_tracking_routes ⊂ admin_viewer_routes). Tests: - 8 new parametrized cases pinning each previously-leaking management write endpoint to 403 on POST for PROXY_ADMIN_VIEW_ONLY. * fix(tests): anchor VCR redis cassette key to repo root `os.path.relpath` with no `start` arg uses the current working directory, so running pytest from a subdirectory produced a different Redis key than running from the repo root. CI-recorded cassettes and locally-replayed runs would silently miss each other's cache. Anchor the path to the repo root (derived from `__file__`) so the key is stable regardless of CWD. https://claude.ai/code/session_018uCx7pcrkdUJZrCVMaTdPx * fix: gate key access_group override on group's own assignment Replaces the previous intersect-with-team.access_group_ids check, which made the override unreachable in practice (the team-gate fallback already covered every case the intersection allowed). The override now resolves each of the key's access_group_ids via get_access_object and accepts the group only if its assigned_team_ids includes the key's team_id, or its assigned_key_ids includes the key's token. This fulfills the original ask (a key can extend a team's allow-list via a group the admin granted to that team or that specific key) while still rejecting foreign groups referenced by team members of other teams. * [Fix] Proxy/Key Management: Honor team_member_permissions /key/list In /key/list Endpoint When a team grants /key/list via team_member_permissions, non-admin members should see all keys for that team — same as a team admin. Previously the classification in list_keys() only checked admin status, so permitted members fell into the service-account-only path and could not see other members' personal keys. Routes those members into the full-visibility set. * Fix access-group bypass via litellm-model fallback path When _get_all_deployments returns 0 candidates and the litellm-model fallback branch (_get_deployment_by_litellm_model) finds deployments that the access-group filter then empties, _access_group_filter_emptied_candidates remained False (it was captured before that branch ran). The router would then proceed to default fallbacks; the fallback model could have no access_groups and short-circuit the filter, silently serving a caller blocked by access-group restrictions. Update the flag inside the litellm-model branch when filtering empties a non-empty candidate set so the default-fallback guard still triggers. * fix(proxy): redact MCP server URL and headers for non-admin viewers (VERIA-8) Many MCP integrations (Zapier, etc.) embed an upstream API key directly in the server URL, e.g. ``https://actions.zapier.com/mcp/<api-key>/sse``. The list and single-server endpoints were returning the full URL to any authenticated user — `_redact_mcp_credentials` only stripped the explicit ``credentials`` field, and `_sanitize_mcp_server_for_virtual_key` only ran for restricted virtual keys. Non-admin internal users could read the dashboard, click the unmask toggle, and exfiltrate the raw token. Add `_sanitize_mcp_server_for_non_admin` that runs on top of the existing credential redaction and clears the credential-bearing fields: - ``url`` (the primary leak vector) - ``spec_path`` (OpenAPI spec URLs that may carry tokens) - ``static_headers`` / ``extra_headers`` (Authorization) - ``env`` (arbitrary secrets) - ``authorization_url`` / ``token_url`` / ``registration_url`` Identity fields (``server_id``, ``alias``, ``mcp_info``, etc.) are preserved so the UI can still list servers a non-admin's team has access to. Apply the new sanitizer in `fetch_all_mcp_servers` and the per-server fetch path right after the existing virtual-key branch. Update the existing `test_list_mcp_servers_non_admin_user_filtered` assertions that previously checked URL visibility. Frontend defense-in-depth: hide the URL unmask toggle on `mcp_server_view.tsx` unless the viewer is a proxy admin. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * Fix runtime policy attachment initialization Mark runtime-created policies and attachments initialized so global policy attachments created from the policy builder apply immediately without requiring a restart. Co-authored-by: Cursor <cursoragent@cursor.com> * test(router): cover _try_early_resolve_deployments_for_model_not_in_names The router_code_coverage CI check requires every function in router.py to be referenced by at least one test under tests/{local_testing, router_unit_tests,test_litellm} in a file with "router" in its name. The recently-extracted helper had no direct test, so the check failed with "0.45% of functions in router.py are not tested". Add a focused test that exercises the four return paths: model already in self.model_names, no fallback applies, pattern-router match, and default_deployment substitution (also asserting the stored default isn't mutated). https://claude.ai/code/session_019AVp1XL7RT9RxRe4qRLkay * Fix policy registry teardown in tests Reset the policy ID index during policy engine test cleanup so stale policy versions cannot leak between tests. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(batches): count non-chat tokens, validate batch-file model access (VERIA-39) (#27015) * fix(batches): count non-chat tokens and validate every model in batch file Two security control bypasses on POST /v1/batches: 1. `_get_batch_job_input_file_usage` only summed tokens for `body.messages` (chat completions). Embedding (`input`) and text completion (`prompt`) batches reported zero, letting massive non-chat workloads slip past TPM rate limits. Extend the counter to handle string and list shapes for both fields. 2. The batch input file was forwarded to the upstream provider without inspecting the models named inside the JSONL — only the outer `model` query parameter was checked against the caller's allowlist. A caller restricted to gpt-3.5 could submit a batch targeting gpt-4o and the upstream would execute it under the proxy's shared API key. Add `_get_models_from_batch_input_file_content` (returns the distinct `body.model` values) and call it from `_enforce_batch_file_model_access` in the pre-call hook, which runs each model through `can_key_call_model` so the same allowlist semantics (wildcards, access groups, all-proxy-models, team aliases) the proxy enforces on `/chat/completions` apply here too. Any unauthorized model raises a 403 before the file is forwarded. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(batches): count pre-tokenized prompt/input shapes, classify 403 logs Two follow-ups from the Greptile review on the batch validation PR: 1. P1 TPM bypass via integer token arrays. The OpenAI batch schema accepts ``prompt`` and ``input`` as ``list[int]`` (a single pre-tokenized prompt) or ``list[list[int]]`` (multiple) in addition to the string and ``list[str]`` shapes. Pre-fix only the string shapes were counted, so a caller could submit a batch with hundreds of millions of pre-tokenized tokens and the rate limiter would record zero. Extract the per-field logic into ``_count_prompt_or_input_tokens`` and count each int as one token. 2. P2 access-denial logs were indistinguishable from I/O failures. ``count_input_file_usage`` caught every exception under a generic "Error counting input file usage" message, so an intentional 403 from ``_enforce_batch_file_model_access`` looked the same in the logs as a missing file or a Prisma timeout. Catch ``HTTPException`` separately and log 403s at WARNING level with a security-relevant message before re-raising. Tests cover the new shapes: single ``list[int]``, ``list[list[int]]`` (the worst-case bypass vector), and embeddings ``input`` with pre-tokenized arrays. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(proxy): re-validate user_id after /user/info re-parses query (#27009) * fix(proxy): re-validate user_id ownership after /user/info re-parses query The route-level access check in `RouteChecks.non_proxy_admin_allowed_routes_check` reads `request.query_params.get("user_id")`, which decodes literal `+` to spaces. The endpoint then re-parses the raw query string with `urllib.unquote` in `get_user_id_from_request` to preserve `+` characters (so plus-addressed emails work as user_ids). Those two paths produce different ids: a caller who registered a user_id containing a literal space could pass the route check and then read another user's row by sending the encoded `+` form. Add `_enforce_user_info_access` and call it after `_normalize_user_info_user_id` returns the final id. Proxy admin / view-only admin still bypass; everyone else must match the resolved user_id (or have no user_id, which falls back to the caller's own id later in the handler). Tests cover the admin bypass, owner-match path, and the cross-user lookup that this change blocks. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(proxy): apply user_info ownership check to PROXY_ADMIN_VIEW_ONLY `_enforce_user_info_access` was bypassing both PROXY_ADMIN and PROXY_ADMIN_VIEW_ONLY, but the upstream route check in `RouteChecks.non_proxy_admin_allowed_routes_check` only treats PROXY_ADMIN as a true admin for the `/user/info` route — view-only admins go through the `user_id == valid_token.user_id` enforcement along with regular users. Mirroring that asymmetry left the same encoded-`+` bypass open for view-only admins whose user_id contains a literal space. Drop the PROXY_ADMIN_VIEW_ONLY exemption so the post-decode re-check matches the upstream rule. Update tests: a view-only admin must now be blocked from cross-user lookups but still allowed to read their own row. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: yuneng-jiang <yuneng@berri.ai> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(spend-logs): opt-in suppression of stack traces in spend-tracking error logs Adds LITELLM_SUPPRESS_SPEND_LOG_TRACEBACKS env var. When set to true and the proxy log level is INFO or above, spend-tracking error paths emit a single ERROR line without the full traceback. Stack traces are preserved at DEBUG and the Sentry / proxy_logging_obj.failure_handler path is unchanged. The new spend_log_error helper is wired through the spend write hot path: - DBSpendUpdateWriter (update_database, _update_*_db, batch upsert, redis-commit fallbacks) - _ProxyDBLogger._PROXY_track_cost_callback - get_logging_payload exception path - update_spend / update_daily_tag_spend / spend logs queue monitor Resolves LIT-2704. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(spend-logs): preserve no-traceback behavior for update_daily_tag_spend This call site previously logged a single-line error via verbose_proxy_logger.error() with no traceback. Switching it to spend_log_error(..., exc=e) caused a full stack trace to render by default (when LITELLM_SUPPRESS_SPEND_LOG_TRACEBACKS is unset), which contradicts the PR goal of leaving default behavior unchanged. Revert this specific site to the original error log call. * fix(spend-logs): preserve no-traceback behavior for update_daily_tag_spend Bugbot caught a regression: the previous error log here was a single-line verbose_proxy_logger.error(...) with no traceback. spend_log_error attaches the active exception's traceback by default (when the suppression env var is unset), so swapping it in changed default behavior. Revert this one site to its original .error() call to keep the PR strictly opt-in. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * feat(spend-logs): suppress traceback in SpendLogs error_information row Extend LITELLM_SUPPRESS_SPEND_LOG_TRACEBACKS to the failure callback so the per-row Metadata pane in the UI no longer shows the stack trace when the opt-in env var is set, matching the existing console-side suppression. https://claude.ai/code/session_014dztoRbRnRvq54HL9EyHx6 * [Fix] Proxy: Repair Merge Fallout In Router-Override Fallback Auth Conflict resolution for #26968 dropped the `Iterator` typing import (NameError at module load), left a dead `fallback_models = cast(...)` block, and the new tests called `_enforce_key_and_fallback_model_access` without the now-required `request` kwarg. * isolate dual OTEL handlers * harden cloud file compatibility path * harden cloud file compatibility path * [Fix] Proxy/Key Management: Align Key-Org Membership Checks On Generate And Regenerate Mirrors the membership rule on /key/update so that /key/generate and /key/{key}/regenerate apply the same `_validate_caller_can_assign_key_org` gate when the caller specifies an `organization_id`. Proxy admins bypass. The check no-ops when `organization_id` is not being set. * thread trusted params through vertex file content * trust only server legacy file flag * chore(proxy): keep public AI hub unauthenticated * fix(proxy): preserve low-detail readiness status * [Test] Anthropic: Replace Legacy Claude-4-Sonnet Alias With Haiku 4.5 Three live-API tests pinned to claude-4-sonnet-20250514, which is a non-canonical alias of claude-sonnet-4-20250514. Anthropic's main API no longer resolves the legacy form under freshly issued keys, so the tests fail with not_found_error. The token counter test pinned to claude-sonnet-4-20250514 itself (deprecation_date 2026-05-14, two weeks out) was on borrowed time too. Bump all four to claude-haiku-4-5-20251001 — capability superset for what these tests exercise (streaming, parallel tool calling, extended thinking, token counting), no upcoming deprecation, cheaper per-token. * chore(proxy): move URL-valued model/file_id guard from SDK to proxy The previous per-provider guards in HuggingFace, Oobabooga, and Gemini files lived in the SDK layer, breaking SDK callers who legitimately pass URL-valued model identifiers. Move the check to the proxy boundary in add_litellm_data_to_request so SDK users keep working while proxy users default-deny URL-valued model and file_id, with admin opt-in via litellm.provider_url_destination_allowed_hosts. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * [Chore] Proxy/UI: Drop stray _experimental/out/chat/index.html This file is a regenerable UI build artifact that should not be tracked in source. Removing so the merge into litellm_internal_staging stays clean. * [Test] Anthropic Passthrough: Bump Streaming Cost-Injection Test To Haiku 4.5 test_anthropic_messages_streaming_cost_injection hits the proxy's /v1/messages route, which routes via the anthropic/* wildcard to api.anthropic.com. The 404 surfaced in the test was Anthropic's own not_found_error propagated back through the proxy (visible from the x-litellm-model-id hash on the response — the proxy did route). Same root cause as the prior commit: the legacy claude-4-sonnet-20250514 alias is no longer recognized by Anthropic's main API under the new key. Swap to claude-haiku-4-5-20251001 — same routing path, canonical model. * fix(proxy): handle ownership-recording failures after upstream create If record_container_owner raises after the upstream container is created, the user previously got a 500 with no usable container — they were billed for an unreachable resource. Move ownership recording into the create path's exception handling and split the two failure modes: - HTTPException from the recorder (auth conflicts) propagates verbatim so the client sees the real status code, not a generic LLM error. - Unexpected exceptions are logged and swallowed; the response is returned to the caller so they aren't billed for a container they can't address. The DB row stays untracked until an operator reconciles. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(guardrails): close post-call coverage gaps * fix(types): add /team/permissions_bulk_update to management_routes The blocklist check in _check_proxy_admin_viewer_access only fires for routes that match LiteLLMRoutes.management_routes — the bulk-update endpoint was missing from that list, so the test for view-only admins on /team/permissions_bulk_update fell through to "allow." Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * [Test] Anthropic Passthrough: Bump Thinking Tests Off Legacy Sonnet 4 Alias base_anthropic_messages_test.test_anthropic_messages_with_thinking and test_anthropic_streaming_with_thinking still pinned to claude-4-sonnet-20250514 — the same legacy alias Anthropic no longer recognizes under freshly issued keys. The other four tests in this base class already use claude-sonnet-4-5-20250929; these two were missed. Bump to claude-haiku-4-5-20251001 (supports_reasoning=true, no upcoming deprecation). Subclasses including TestAnthropicPassthroughBasic inherit these methods. * fix(guardrails): cover multi-choice output variants * fix(proxy): preserve public ai hub ui setting * fix(scim): cascade FK cleanup on user delete and surface block status in UI SCIM DELETE /Users/{id} previously called litellm_usertable.delete without clearing rows that FK back to the user, so Postgres rejected the delete with LiteLLM_InvitationLink_user_id_fkey and the SCIM caller saw a 500. Add a helper to drop invitation_link, organization_membership, and team_membership rows before the user delete (mirrors /user/delete in internal_user_endpoints). Also add a Status column to the Virtual Keys and Internal Users tables so admins can see at a glance which keys are blocked and which users SCIM has deactivated. SCIM-blocked keys carry a tooltip explaining the origin. Pin the dashboard's Node version to 20 via .nvmrc to match CI. * chore: update Next.js build artifacts (2026-05-02 03:21 UTC, node v20.20.2) * perf(proxy): cache container/skill ownership reads on the hot path Container ownership and skill rows are looked up on every retrieve / delete / list / file-content / chat-completion-with-skill call. The new stores wrapped raw Prisma queries with no cache, putting one DB round-trip on each request. Add an in-process TTL'd cache mirroring the _byok_cred_cache pattern in mcp_server/server.py: per-key (value, monotonic_timestamp), 60s TTL, 10000-entry cap with full-clear on overflow, invalidated by every write. Negative results (`None`) are cached too so untracked-resource checks also skip the DB. Tests cover: cache-after-first-hit, negative caching, write invalidation, no-caching-on-DB-error, TTL expiry, capacity eviction. 56 tests pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: update Next.js build artifacts (2026-05-02 03:39 UTC, node v20.20.2) * fix: remove traceback key instead of it being "" * fix: linting error * fix(scim): preserve scim_active on PUT when client omits the field A SCIM PUT may legally omit `active` (full-replace with the field absent). Pydantic fills the SCIMUser.active default of True, so the PUT handler was overwriting metadata.scim_active with True even when the client never sent it — silently reactivating a previously SCIM-blocked user and unblocking their keys. Use model_fields_set to detect whether the client actually sent `active`. If omitted, preserve the prior scim_active value and skip the cascade to virtual keys. Also drop comments added in this PR that just narrate what the code does; keep only the docstrings and the SQL-NULL pitfall note that explain non-obvious behaviour. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(proxy): use set lookup for permitted agent filters * fix(mcp): redact command fields for non-admin server views * fix(proxy): forward decoded container ids after ownership checks * fix(caching): handle stale isolated Redis semantic index * fix(cloudflare): support response_text in streaming chunk parser Newer Cloudflare Workers AI models (e.g. Nemotron) emit 'response_text' instead of 'response' on streamed chunks. The non-streaming path was already updated to fall back to 'response_text' (#26385), but the streaming chunk parser still only read 'response', which caused streaming requests against those models to silently produce empty content. Mirror the non-streaming fallback in CloudflareChatResponseIterator.chunk_parser and add a streaming test for the response_text shape. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * Fix code qa * Address bugbot: drop dead encode/decode helpers; preserve empty custom_id - Remove unused _encode_gcp_label_value / _decode_gcp_label_value singular helpers; only the _chunks variants are actually called. - Use 'is not None' check for custom_id so empty-string custom_ids are still labeled and round-trip through batch outputs. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * Forward Vertex file content logging context * test vertex file content logging forwarding Co-authored-by: Sameer Kankute <Sameerlite@users.noreply.github.com> * Fix Vertex batch output logging mutation * fix: don't mutate caller's logging_obj in _try_transform_vertex_batch_output_to_openai The method was overwriting logging_obj.optional_params, logging_obj.model, and logging_obj.start_time on the caller's Logging instance. When invoked from llm_http_handler.py's generic framework path, the framework's own logging_obj (which already went through pre_call) had its properties clobbered, causing model and start_time to reflect the last batch line's values rather than the original call context. Fix: create a fresh local Logging instance for the per-line transformation instead of mutating the incoming logging_obj. The caller's object is now left entirely untouched regardless of whether a logging_obj was passed in or not. Regression tests added to verify model, start_time, and optional_params are not mutated on the caller's logging_obj. Co-authored-by: Sameer Kankute <Sameerlite@users.noreply.github.com> * feat: add opt-out flag for Vertex batch output transformation Adds litellm.disable_vertex_batch_output_transformation (default False). When True, afile_content returns raw Vertex predictions.jsonl untouched so users that parse candidates/modelVersion directly are not broken. * fix(anthropic,bedrock): omit thinking/output_config when reasoning_effort="none" Setting reasoning_effort="none" on Anthropic chat models (direct, Bedrock Invoke, Bedrock Converse, Vertex AI Anthropic, Azure AI Anthropic) crashed LiteLLM with: litellm.APIConnectionError: 'NoneType' object has no attribute 'get' Both the Anthropic chat transformation and Bedrock Converse called ``AnthropicConfig._map_reasoning_effort`` and assigned the ``None`` it returns for ``"none"`` directly to ``optional_params["thinking"]``. Downstream ``is_thinking_enabled`` then did ``optional_params["thinking"].get("type")`` and crashed. Pop ``thinking`` (and on Claude 4.6/4.7, ``output_config``) instead of assigning ``None``, restoring the documented contract that ``reasoning_effort="none"`` means "do not enable thinking". This also prevents downstream Anthropic 400s ("thinking: Input should be an object", "output_config.effort: Input should be ...") if the bug were ever masked. Verified end-to-end against the live Anthropic API and Bedrock Converse on claude-opus-4-{5,6,7} and claude-sonnet-4-6, plus Bedrock Invoke for Claude 4.5/4.6. Vertex AI Anthropic and Azure AI Anthropic inherit the fixed ``map_openai_params`` from ``AnthropicConfig`` and need no further changes. * fix(vertex-ai): set response=null on batch error entries per OpenAI spec The Vertex batch output transformer was emitting both a populated 'response' and 'error' for failed batch entries. The OpenAI Batch output spec defines them as mutually exclusive: on error 'response' MUST be null. This broke any consumer using 'result["response"] is None' to detect failures. * test(vertex-ai): cover transformation_error path emits response=null * fix(security): sandbox jinja2 in gitlab/arize/bitbucket prompt managers DotpromptManager was hardened to render through ImmutableSandboxedEnvironment. The three sibling managers (gitlab, arize, bitbucket) were missed and still instantiate plain jinja2.Environment(), leaving the same attribute-traversal SSTI primitive open: a template fetched from a GitLab/BitBucket repo or Arize Phoenix workspace can reach __class__.__init__.__globals__ and execute arbitrary Python on the proxy host. Match the dotprompt pattern by switching all three to ImmutableSandboxedEnvironment. The sandbox blocks the dunder-traversal chain while leaving normal {{ var }} substitution intact, so the template surface is unchanged for legitimate use. Adds tests/test_litellm/integrations/test_prompt_manager_ssti.py (18 cases) verifying each manager's jinja_env is a sandbox, that classic SSTI payloads raise SecurityError, and that ordinary variable rendering still works. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore(proxy): drop client-supplied pricing fields from request bodies The proxy currently forwards request-body pricing parameters (the fields on `CustomPricingLiteLLMParams`, plus `metadata.model_info`) into the core call path. Those fields belong to deployment configuration, not to per-request input — sending them from a client mutates the request's recorded cost and, via `litellm.completion` → `register_model`, the process-wide `litellm.model_cost` map for every later caller in the worker. Strip them at the boundary. The strip set is built from `CustomPricingLiteLLMParams.model_fields` so pricing fields added later are covered automatically. Operators who do want clients to supply per-request pricing can opt back in per key or team via `metadata.allow_client_pricing_override = true`, mirroring the existing `allow_client_mock_response` and `allow_client_message_redaction_opt_out` flags. Tests cover the strip set's coverage, root and metadata strips, the opt-in skip on both key and team metadata, and a regression check that the global `litellm.model_cost` map is unmutated after a stripped request. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore(proxy): log stripped pricing fields at debug for operator visibility Operators upgrading would otherwise see client-supplied pricing overrides silently stop applying with no diagnostic. Emit a debug-level line listing the dropped fields and pointing at the opt-in flag when any are stripped; stay silent on the no-op path so the log isn't filled with noise. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(proxy): move pricing strip below the litellm_metadata JSON-string parse The strip ran before the proxy parses ``litellm_metadata`` from a JSON string into a dict (a path used by multipart/form-data and ``extra_body`` callers), so ``isinstance(metadata, dict)`` was False and ``model_info`` survived the strip. Move the call to the same post-parse position the ``user_api_key_*`` strip already uses for the same reason. Adds a regression test exercising the JSON-string ``litellm_metadata`` path. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * test(responses): replace legacy claude-4-sonnet alias in multiturn tool-call test Anthropic's main API no longer resolves the non-canonical 'claude-4-sonnet-20250514' alias for freshly issued keys, returning 404 not_found_error. PR #27031 already swept three other live tests pinned to this alias to claude-haiku-4-5-20251001 but missed test_multiturn_tool_calls in the responses API suite, which is now failing reliably on PR CI runs (e.g. PR #27074, job 1603363). Bump the two model references in test_multiturn_tool_calls to the same claude-haiku-4-5-20251001 snapshot used by PR #27031 -- it covers everything this test exercises (tool calling, multi-turn) and isn't on a deprecation schedule. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * chore(proxy): close callback-config and observability-credential side channels Two related gaps in the proxy's request bouncer: 1. ``is_request_body_safe`` (auth_utils.py) walked the request-body root and the ``litellm_embedding_config`` nested dict, but not ``metadata`` or ``litellm_metadata``. The same fields it bans at root — Langfuse / Langsmith / Arize / PostHog / Braintrust / Phoenix / W&B Weave / GCS / Humanloop / Lunary credentials and routing — were silently accepted when the caller put them inside metadata, retargeting observability callbacks to a caller-controlled host with caller-supplied creds. Walk both metadata containers (and parse the JSON-string form sent via multipart / ``extra_body``) through the same banned-params helper, so the existing ``allow_client_side_credentials`` opt-in covers both paths consistently. 2. The banned-params list was hand-maintained and lagged the canonical ``_supported_callback_params`` allow-list in ``initialize_dynamic_callback_params``. Derive the observability bans from that allow-list (minus a small ``_SAFE_CLIENT_CALLBACK_PARAMS`` set for informational fields like ``langfuse_prompt_version`` and ``langsmith_sampling_rate``) so future integrations are covered automatically; ``_EXTRA_BANNED_OBSERVABILITY_PARAMS`` carries the handful of fields integrations read but the allow-list hasn't caught up to. A guard test fails CI if a new entry is added to ``_supported_callback_params`` without an explicit safe-list decision. Separately in ``litellm_pre_call_utils.py``: add ``callbacks``, ``service_callback``, ``logger_fn``, and ``litellm_disabled_callbacks`` to ``_UNTRUSTED_ROOT_CONTROL_FIELDS``. The first three are appended to worker-wide ``litellm.{input,success,failure,_async_*,service}_callback`` lists / ``litellm.user_logger_fn`` from inside ``function_setup`` — one request poisons every subsequent caller in that worker. The last is the inverse primitive: the legitimate path reads it from key/team metadata, the request-body version silently disables admin-configured audit / observability for the call. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(auth): per-param allow must continue, not return early A pre-existing logic bug in ``_check_banned_params``: when the deployment-level ``configurable_clientside_auth_params`` permitted one banned field, the loop ``return``-ed on the first match instead of ``continue``-ing, so any other banned param later in the same body or metadata dict was never checked. This PR's metadata walk multiplies the surface where that bypass matters — a body pairing an allowed ``api_base`` with an observability credential like ``langfuse_host`` would silently pass. Proxy-wide ``allow_client_side_credentials`` keeps ``return`` (it's a global opt-in for every banned param). The per-param branch becomes ``continue`` so only the one explicitly-permitted field is skipped. Adds a regression test that exercises the api_base + langfuse_host pair. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(vector_store): resolve embedding config at request time, never persist creds The vector store create/update path previously called ``_resolve_embedding_config`` against the admin-configured router/DB model and persisted the resolved ``litellm_embedding_config`` dict (``api_key`` / ``api_base`` / ``api_version``) into the ``litellm_managedvectorstorestable.litellm_params`` column. Because the resolver expanded ``os.environ/...`` references via ``get_secret``, the DB row carried cleartext provider credentials, and the ``/vector_store/{new,info,update,list}`` responses returned them to any authenticated caller who could supply a known admin model name. Move the auto-resolve out of ``create_vector_store_in_db`` and out of the update path. Persist only the user-supplied ``litellm_embedding_model`` reference. Resolve at request-handling time inside ``_update_request_data_with_litellm_managed_vector_store_registry`` so the resolved config lives in the per-request ``data`` dict and is garbage-collected after the response. Legacy rows that were created by an earlier proxy version and already carry a resolved ``litellm_embedding_config`` skip the re-resolution and pass through unchanged so embedding calls keep working. The ``new_vector_store`` response now also runs the existing ``_redact_sensitive_litellm_params`` masker (already used by ``info``, ``update``, and ``list``), defending against caller-supplied cleartext on the create path and against legacy rows whose persisted credentials are still in the database. Existing tests that asserted the old write-time-resolve behaviour are updated to assert the new persistence shape (no embedding config stored, just the model reference). Two new tests cover the use-time path: one asserting fresh resolution happens when a row carries only the model reference, the other asserting legacy rows with persisted config skip re-resolution and continue to work. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(vector_store): tighten registry-mutation comment and dedupe test helpers * fix(vector_store): cache use-time embedding-config resolution Hold the resolved config in a process-memory TTL cache so the request-handling path doesn't run litellm_proxymodeltable.find_first on every vector-store call. * fix(anthropic,bedrock,vertex): forward output_config.effort + 400 on garbage reasoning_effort Follow-up bugs surfaced by the QA sweep on PR #27039 (https://github.com/BerriAI/litellm/pull/27039#issuecomment-4363363610). 1. Stop stripping output_config.effort on Bedrock + Vertex adaptive routes. - Vertex AI Claude 4.6/4.7 accepts output_config.effort on rawPredict (verified end-to-end against us-east5 / global). The strip helper now no-ops for effort. - Bedrock Converse routes output_config into additionalModelRequestFields for anthropic base models so the requested adaptive tier (low/medium/ high/xhigh/max) actually reaches the wire instead of all collapsing to identical thinking. - Bedrock Invoke chat transformation (AmazonAnthropicClaudeConfig) stops popping output_config from the post-AnthropicConfig request body. - Bedrock Invoke /v1/messages allowlist (BedrockInvokeAnthropicMessagesRequest) now lists output_config so the runtime allowlist filter forwards it. 2. Validate effort across Bedrock Converse so 'disabled' / 'invalid' / '' / unsupported tiers (xhigh/max on Sonnet 4.6 or budget-mode 4.5 models) surface as a clean 400 BadRequestError instead of 500. 3. ValueError -> BadRequestError throughout (AnthropicConfig.map_openai_params, _apply_output_config, AmazonConverseConfig._handle_reasoning_effort_parameter). Empty-string effort is now rejected (was silently passing the 'if effort and ...' short-circuit). 4. Floor reasoning_effort='minimal' at the Anthropic provider minimum (1024 budget_tokens) via new ANTHROPIC_MIN_THINKING_BUDGET_TOKENS so it's a usable tier on direct Anthropic / Azure AI Anthropic / Vertex AI Anthropic / Bedrock Invoke (all of which 400 below 1024). 5. model_prices: dedupe duplicate supports_max_reasoning_effort key on claude-opus-4-7 / claude-opus-4-7-20260416. Adds regression tests across all five affected paths; existing tests asserting the silent-strip behavior were updated to reflect the new pass-through and clean 400 surfaces. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(constants): make ANTHROPIC_MIN_THINKING_BUDGET_TOKENS a plain constant The documentation CI test (tests/documentation_tests/test_env_keys.py) asserts every os.getenv() key in the source has a matching entry in the litellm-docs config_settings.md table. ANTHROPIC_MIN_THINKING_BUDGET_TOKENS tracks Anthropic's published wire-protocol minimum (1024) — it's not a user-tunable, so making it env-overridable was wrong anyway. Drop the os.getenv() wrapper; the value is now a plain literal. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(anthropic,bedrock): correct effort error message and dedupe effort_map - Remove 'none' from the Bedrock _validate_anthropic_adaptive_effort error message; it was listed as a valid value but rejected by the membership check, leaving users in a feedback loop if they tried 'none'. - Hoist the duplicated reasoning_effort -> output_config.effort mapping out of AnthropicConfig.map_openai_params and AmazonConverseConfig._handle_reasoning_effort_parameter into a single AnthropicConfig.REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT class constant so the two routes cannot drift. * fix(anthropic): translate reasoning_effort on /v1/messages route Closes the remaining QA-sweep gap on PR #27074: Bedrock Invoke /v1/messages was silently ignoring ``reasoning_effort`` because the shared param filter only kept native Anthropic keys, so every effort tier collapsed to the same behavior on the wire (27/231 cells failing across opus-4-5 / opus-4-6 / sonnet-4-6). Map ``reasoning_effort`` to native Anthropic ``thinking`` / ``output_config.effort`` at the ``AnthropicMessagesConfig`` layer so all four /v1/messages routes (direct Anthropic, Azure AI, Vertex AI, Bedrock Invoke) inherit the same translation: - Add ``reasoning_effort`` to ``AnthropicMessagesRequestOptionalParams`` so the param filter in ``AnthropicMessagesRequestUtils.get_requested_anthropic_messages_optional_param`` no longer drops it before the transformation runs. - Add ``_translate_reasoning_effort_to_anthropic`` and call it from ``transform_anthropic_messages_request``. Mirrors ``AnthropicConfig.map_openai_params`` on the chat completion path (re-uses ``_map_reasoning_effort`` and ``REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT``) so the two routes cannot drift. Pops ``reasoning_effort`` so it never reaches the wire. - Caller-supplied native ``thinking`` / ``output_config.effort`` always win — same precedence as ``_translate_legacy_thinking_for_adaptive_model``. - Garbage values (``""``, ``"disabled"``, ``"invalid"``) raise ``AnthropicError(status_code=400)`` instead of falling through and surfacing as 500s from the provider. - ``"none"`` clears thinking + output_config so callers can opt out per request. Also restores the non-adaptive-model test coverage on Bedrock Invoke /v1/messages that the previous commit lost when ``test_bedrock_messages_strips_output_config`` was renamed to the ``forwards`` variant on Opus 4.7. Adds a new test file ``test_reasoning_effort_translation.py`` covering the translation at the shared config level (adaptive + non-adaptive models, none, garbage, caller precedence) so all four /v1/messages routes are exercised by a single suite. Adds parametrized + behavioral tests on the Bedrock Invoke /v1/messages suite covering: minimal/low/medium/high/xhigh/max mapping for adaptive models, thinking-budget mapping for non-adaptive Opus 4.5, ``none`` clears both, garbage raises 400, explicit ``output_config`` wins. Refs: https://github.com/BerriAI/litellm/pull/27074 * fix(anthropic,bedrock): reject unmapped reasoning_effort at mapping site Both the chat completion path (AnthropicConfig.map_openai_params) and the Bedrock Converse path (_handle_reasoning_effort_parameter) used REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT.get(value, value) which falls back to the raw input on unmapped keys. Combined with _map_reasoning_effort returning type='adaptive' for any string on Claude 4.6/4.7, garbage values (e.g. 'disabled') could leak into optional_params['output_config']['effort'] unvalidated if map_openai_params ran without the downstream transform_request or _validate_anthropic_adaptive_effort check. Mirror the /v1/messages pattern: use .get(value) (no fallback) and raise BadRequestError immediately when the value is unmapped, co-locating validation with the mapping for defense in depth. * style: black formatting Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(anthropic): stop class-attr leak; gate xhigh/max on every route The reasoning-effort mapping dict was a public class attribute on AnthropicConfig, so BaseConfig.get_config returned it as a request parameter and every Anthropic-backed call (Anthropic / Azure / Vertex / Bedrock Invoke) hit a 400 'REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT: Extra inputs are not permitted' from the provider. Move the mapping to a module-level constant. _supports_effort_level only looked the model up under custom_llm_provider='anthropic', so bedrock-prefixed model ids (e.g. bedrock/invoke/us.anthropic.claude-opus-4-7) returned False for both 'max' and 'xhigh' even when the underlying model entry has the flag set. Strip known provider prefixes and retry the lookup against litellm.model_cost directly so per-model gating works on every route. Mirror the per-model xhigh/max gate from AnthropicConfig._apply_output_config in AnthropicMessagesConfig._translate_reasoning_effort_to_anthropic so the /v1/messages route also raises a clean 400 instead of forwarding the unsupported tier. * feat(anthropic,bedrock): strip output_config under drop_params for non-effort models When a proxy fronts Claude Code (which always sends `output_config.effort`) at a pre-4.5 Anthropic model — haiku-3, sonnet-3.5, opus-3, sonnet-4 — the forwarded knob causes a forced 400 the client can't fix. Gating a strip behind the existing `drop_params` flag lets operators opt into silent fixup once and stop worrying about per-model param hygiene. Default (`drop_params=False`) still forwards and surfaces the provider's error, preserving the strict, debuggable contract from #27074. Per https://platform.claude.com/docs/en/build-with-claude/effort the supporting set is Opus 4.5+, Sonnet 4.6+, and Mythos Preview; everything else is dropped (with a verbose_logger warning so the strip is visible). Recognition uses model-name patterns plus a fallback to any `supports_*_reasoning_effort` flag in the model map for forward compatibility with new entries. https://claude.ai/code/session_01WjHq31rvXT6xYNdVmSJvRp (cherry picked from commit1233943e78) * fix(base_llm): filter all _-prefixed class attrs from get_config The drop_params strip work added `AnthropicConfig._EFFORT_SUPPORTING_MODEL_PATTERNS` as a private class-level lookup tuple. `BaseConfig.get_config()` only filtered the `__`-prefixed names plus `_abc` / `_is_base_class`, so `_EFFORT_SUPPORTING_MODEL_PATTERNS` would have leaked into the request body the same way `REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT` did before the previous commit. Generalize the existing `_abc` / `_is_base_class` carve-outs to skip every `_`-prefixed name. `AmazonConverseConfig.get_config()` overrides the base method, so apply the same change there. Also unblocks future internal helpers from accidentally serialising into the wire body. * fix(anthropic): drive output_config.effort support from model map flags Replace hardcoded _EFFORT_SUPPORTING_MODEL_PATTERNS with a JSON-backed check that uses supports_*_reasoning_effort flags from the model map. Add supports_minimal_reasoning_effort: true to opus-4-5 and mythos-preview entries (which previously only carried supports_reasoning) so the JSON remains the single source of truth for effort capability. * fix(anthropic,bedrock,databricks): four reasoning_effort follow-ups - claude-sonnet-4-6 + reasoning_effort=max no longer 400s. Renamed _is_opus_4_6_model to _is_claude_4_6_model at three sites and added supports_max_reasoning_effort: true to 12 model entries in the JSON cost map (10 sonnet 4.6 ids + OpenRouter opus 4.6/4.7). - _map_reasoning_effort now raises BadRequestError(400) directly with llm_provider, instead of letting Databricks (and similar callers) surface its raw ValueError as a 500. - output_config.effort on Opus 4.5 over Bedrock no longer 400s for missing effort-2025-11-24 beta. Flipped JSON to "effort-2025-11-24" for bedrock + bedrock_converse and added an auto-attach branch in _process_tools_and_beta for non-adaptive Anthropic + output_config on Converse. - reasoning_effort=xhigh / =max on legacy budget-mode models (Haiku 4.5, Sonnet 4.5, Opus 4.5) now map to thinking.budget_tokens 8192 / 16384 instead of returning 400. Added two constants in litellm/constants.py. Tests updated for all four flips. Validated end-to-end via 306-cell live proxy matrix (6 model families x 3 routes x 17 effort cases), all pass. * fix(databricks): validate reasoning_effort and set output_config on adaptive Claude The Databricks path called `AnthropicConfig._map_reasoning_effort` for Claude models but never validated the effort string nor set `output_config.effort` for adaptive models (Claude 4.6/4.7). Since `_map_reasoning_effort` returns `type=adaptive` for ANY non-None / non-"none" string on adaptive models (including "disabled", "invalid", ""), Databricks silently accepted garbage and emitted a request without an `output_config.effort`, collapsing every adaptive tier to identical behavior. Match the Anthropic native, Bedrock Converse, Bedrock Invoke, and /v1/messages paths: when the resolved `thinking` is non-None on a 4.6/4.7 model, look up the value in `REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT` and either raise a clean `BadRequestError` or set `optional_params["output_config"]`. * fix(azure): omit model from image generation and image edit deployment requests Azure OpenAI routes image gen/edit by deployment in the URL; sending the deployment id in model breaks gpt-image-2 (invalid_value). Strip model from JSON for deployments/.../images/generations and from multipart data for .../images/edits. Non-deployment URLs (e.g. Azure AI FLUX) unchanged. Fixes #26316. Co-authored-by: Cursor <cursoragent@cursor.com> * test(azure): exercise image gen JSON filter via HTTP client; dedupe image edit URL - Image generation tests patch HTTPHandler.post / get_async_httpx_client so make_*_azure_httpx_request runs and wire json is asserted on call kwargs. - Azure image edit: strip model in finalize_image_edit_multipart_data using the same URL string the handler passes to POST (no second get_complete_url in transform). BaseImageEditConfig default finalize is a no-op. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(azure_ai/anthropic): promote output_config out of extra_body so validation runs `azure_ai` is registered in `litellm.openai_compatible_providers`, so `add_provider_specific_params_to_optional_params` (litellm/utils.py) auto-stuffs any non-OpenAI kwarg (e.g. `output_config={"effort": "..."}`) into `optional_params["extra_body"]`. `AzureAnthropicConfig.transform_request` then strips `extra_body` entirely on the way out, silently dropping the param — and `AnthropicConfig._apply_output_config` never sees it, so `effort="invalid"` / `effort="xhigh"` on a non-supporting model quietly reaches the model with default behavior instead of returning a clean 400 (as the native `anthropic` provider does). Promote the keys back to top-level `optional_params` (using `setdefault` so explicit top-level values win) before delegating to the parent `AnthropicConfig`. Apply in both `validate_environment` and `transform_request` so flag detection (`is_mcp_server_used`, etc.) and output-config validation both run. Surfaced by the QA matrix expansion on PR #27074: 20 cells where Azure returned 200 while `anthropic` returned 400 — all `output_config` mode across haiku_4_5, sonnet_4_5, opus_4_5, sonnet_4_6, opus_4_6, opus_4_7 families with `effort` in {invalid, xhigh, max, low, medium, high}. Tests: * `test_output_config_promoted_from_extra_body`: valid effort reaches data * `test_invalid_output_config_effort_raises_via_extra_body`: 400 on bad effort * `test_unsupported_effort_xhigh_raises_via_extra_body`: 400 on xhigh-on-Sonnet-4.6 * `test_extra_body_promotion_does_not_clobber_top_level`: setdefault semantics * test(image_gen): expect no model in Azure image edit multipart (#26316) Align test_azure_image_edit_litellm_sdk with deployment-scoped Azure edits. Co-authored-by: Cursor <cursoragent@cursor.com> * refactor(anthropic): extract _validate_effort_for_model to prevent drift The chat completion path (`_apply_output_config`) and the /v1/messages pass-through (`AnthropicMessagesConfig._translate_reasoning_effort_to_anthropic`) both gate `max` / `xhigh` per model. The two sites had diverged from near-identical copies into separately maintained blocks, creating a real drift risk when a new model tier (e.g. Claude 4.8) lands -- a contributor could update one site and miss the other. Centralise the gating in `AnthropicConfig._validate_effort_for_model`, which returns an error message string or `None`. Each call site keeps its own provider-appropriate exception type (`BadRequestError` for the chat path, `AnthropicError` for the /v1/messages pass-through) but the gating decision now comes from one place. Net -11 LOC. Adds a parametrised unit test exercising the helper directly across 4.5 / 4.6 / 4.7 model families and `max` / `xhigh` / lower-effort inputs. Existing tests at both call sites continue to pass unchanged. Addresses Greptile finding on PR #27074. * fix(databricks): narrow reasoning_effort_value to str for mypy `non_default_params.get("reasoning_effort")` returns `Any | None`, but `REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT.get()` expects `str`. Mypy flagged this on the strict pass. Narrow with `isinstance` before the lookup; non-strings fall through to the existing `BadRequestError` below with a clean validation message, so behavior is unchanged. Fixes a regression introduced by1a10746e95in this PR. * feat(proxy): add health_check_reasoning_effort for model health checks Co-authored-by: Cursor <cursoragent@cursor.com> * test(image_gen): align Azure image gen fixture with body omitting model Expected JSON matches deployment-scoped Azure POST (#26316). Co-authored-by: Cursor <cursoragent@cursor.com> * test(anthropic/chat): force PR-local model_cost map via autouse fixture CI runs without LITELLM_LOCAL_MODEL_COST_MAP=True, so litellm.model_cost is loaded from main-branch JSON (default model_cost_map_url) instead of the PR's checked-out model_prices_and_context_window.json. Tests that assert per-model flags added in this PR (supports_max_reasoning_effort, supports_xhigh_reasoning_effort) therefore pass locally but fail in CI with 'AssertionError: assert False is True' on 5 cases: - test_anthropic_model_supports_effort_param_recognizes_supporting_models [anthropic.claude-mythos-preview, bedrock/.../mythos-preview, claude-opus-4-5-20251101] - test_supports_effort_level_handles_provider_prefixes [bedrock/invoke/us.anthropic.claude-sonnet-4-6-max-True, claude-sonnet-4-6-max-True] Add an autouse fixture at tests/test_litellm/llms/anthropic/chat/conftest.py that monkey-patches litellm.model_cost to the PR-local JSON for every test in this directory. The parent conftest already snapshots+restores litellm.model_cost per-function, so the mutation is contained. This is a scoped workaround. The proper fix is to set the env var globally in the test workflow once the ~10 inline self-set test files are audited; tracking that as a follow-up issue. * [Fix] Docker: Pin Wolfi And Uv To Multi-Arch Index Digests The previous pins resolved to single-platform amd64 manifests, so buildx pulled the same amd64 base for both linux/amd64 and linux/arm64 targets. The published OCI index then advertised an arm64 entry whose layers are byte-identical to amd64 -- arm64 users got an amd64 binary. Switch all three Dockerfiles to the multi-arch image-index digests: - cgr.dev/chainguard/wolfi-base (index has linux/amd64 + linux/arm64) - ghcr.io/astral-sh/uv:0.11.7 (index has linux/amd64 + linux/arm64) Resolved with `docker buildx imagetools inspect <ref>` -- that returns the index digest. `docker pull` + `docker inspect` returns the per-host platform digest, which is what slipped in last time. * [Fix] Docker: Pin Uv To Multi-Arch Index Digest In Remaining Dockerfiles Apply the same fix to the three Dockerfiles not in the release pipeline today (alpine, dev, health_check) so they stay correct if/when they're built for arm64 in the future. Wolfi pins are not present in these files; the python:3.11-alpine and python:3.13-slim digests they already use are multi-arch indexes that include arm64/v8, so only the uv pin needed swapping. * fix(xai): fold reasoning_tokens into completion_tokens to satisfy OpenAI invariant xAI's chat completions API accounts reasoning_tokens separately from completion_tokens, but rolls them into total_tokens. This breaks the OpenAI invariant total_tokens == prompt_tokens + completion_tokens that downstream consumers (including litellm's own _usage_format_tests in tests/llm_translation/base_llm_unit_tests.py:58) rely on. Live capture (grok-3-mini-beta, 2026-05-04): prompt=14, completion=10, total=336, reasoning=312 14 + 10 = 24, NOT 336. OpenAI's o1/o3 reasoning models include reasoning_tokens in completion_tokens, leaving the prompt+completion=total invariant intact. xAI deviates. This patch aligns xAI to OpenAI semantics by folding reasoning_tokens into completion_tokens after the parent OpenAI parser runs. The fold is idempotent and defensive: - Only fires when total_tokens == prompt_tokens + completion_tokens + reasoning_tokens (the documented xAI shape). Refuses to fold if the gap doesn't match, guarding against silent corruption when xAI changes accounting. - Skips if completion_tokens already covers the gap (already normalised — e.g. cost calc replays a previously-folded Usage). xai.cost_calculator.cost_per_token already added reasoning_tokens to the visible completion count for billing. Post-fold the Usage block now satisfies that invariant directly, so the cost calc would double-bill. Updated cost_per_token to detect the OpenAI-normalised shape (total == prompt + completion) and skip the reasoning add-on in that case, falling through to the legacy raw-shape behaviour for callers that bypass the transformation (e.g. proxy log replay). Tests: - Adds TestXAIReasoningTokenFolding covering: gap-explained-fold, idempotent-no-double-fold, no-reasoning-skip, gap-mismatch-skip. - Adds test_already_normalised_usage_does_not_double_count_reasoning to lock the cost-calc idempotency. - Updates 7 pre-existing cost-calc tests whose total_tokens was internally inconsistent (used the OpenAI-normalised total but kept reasoning_tokens external) to use the documented xAI raw shape total = prompt + visible completion + reasoning. Pre-existing values masked the missing-fold by accident. Verified end-to-end against the live xAI API: LITELLM_LOCAL_MODEL_COST_MAP=False (CI default) + XAI_API_KEY set + pytest tests/llm_translation/test_xai.py::TestXAIChat::test_prompt_caching -> PASSED in 18.81s (was: AssertionError on usage.total_tokens == usage.prompt_tokens + usage.completion_tokens) 20/20 tests in tests/test_litellm/llms/xai/test_xai_cost_calculator.py and 8/8 in tests/test_litellm/llms/xai/test_xai_chat_transformation.py pass. * refactor(bedrock/converse): delegate effort gating to AnthropicConfig._validate_effort_for_model Removes the duplicated max/xhigh gating logic in _validate_anthropic_adaptive_effort and the now-unused _supports_effort_level_on_bedrock helper. Per-model gating now flows through the centralized AnthropicConfig._validate_effort_for_model (whose _supports_effort_level already strips Bedrock prefixes), so the chat completion, /v1/messages, and Bedrock Converse paths can't drift when a new gated effort tier is added. * Implement normalize_nonempty_secret_str function to trim whitespace from secrets and treat empty values as unset. Update proxy_server to use this function for Grafana credentials. Enhance tests to validate the new normalization behavior. * Fix qdrant semantic cache miss metadata * chore(deps): refresh dependency locks * chore(deps): authorize pytest license * fix: preserve tokenizer decode round trips * refactor(anthropic): drive adaptive-thinking gate via supports_adaptive_thinking flag Three of greptile's open comments on #27074 (P2 converse:512, P1 databricks:361, and the underlying capability-flag policy rule) flagged the same pattern: _is_claude_4_6_model(...) or _is_claude_4_7_model(...) used inline as a runtime 'is this an adaptive-thinking model?' check. That requires a code release each time a new adaptive Claude lands. Consolidate the inline gating to AnthropicModelInfo._is_adaptive_thinking_model, and switch the helper itself to read a new supports_adaptive_thinking flag from `model_prices_and_context_window.json` via `_supports_factory`, falling back to the family pattern only when the model-map entry doesn't carry the flag (preserves OpenRouter / Vercel / Bedrock-prefixed variants that route through the same code path with non-canonical ids). Adds `supports_adaptive_thinking: true` to the four 4.6/4.7 anthropic entries (opus-4-6 + dated, opus-4-7 + dated, sonnet-4-6). Bedrock-prefixed and Vertex-prefixed entries don't need the flag because both fall back through the family pattern (the helper short-circuits early on True from either path) and the bedrock/vertex Claude IDs all match the existing opus-4-{6,7} / sonnet-4-{6,7} pattern. Affected call sites: - `bedrock/chat/converse_transformation.py:_handle_reasoning_effort_parameter` - `anthropic/chat/transformation.py:_map_reasoning_effort` - `anthropic/chat/transformation.py:map_openai_params` (output_config branch) - `databricks/chat/transformation.py:map_openai_params` (output_config branch) The remaining `_is_claude_4_6_model` / `_is_claude_4_7_model` references in `AnthropicConfig._validate_effort_for_model` and `AnthropicConfig.get_supported_openai_params` are intentionally retained: they're per-model gating fallbacks for variants whose model-map entries don't yet carry the `supports_max_reasoning_effort` / `supports_reasoning` flag. Those are documented in-place. Tests: 537 anthropic/bedrock/databricks/vertex/messages tests pass. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * chore(deps): address dependency review notes * test(model_prices): add supports_adaptive_thinking to schema `test_aaamodel_prices_and_context_window_json_is_valid` validates the model-map JSON against an explicit schema with `additionalProperties`, so the new `supports_adaptive_thinking` flag added in98ced0ae43needs a matching schema entry. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * refactor: remove unnecessary comments from #27074 Strip out the explanatory and historical comments that don't carry business-logic justification. Comments that simply narrate what code does — or that explain prior behavior, what was changed, or which PR introduced a fix — are removed. Docstrings are reduced to a one-line summary where the long form repeated information already evident from the code or test data. No code-behavior changes. All 643 affected unit tests still pass. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test: keep decode token test local * chore(deps): align dashboard node engine * feat: selectively apply routing strategy according to model name * style: make _model_supports_effort_param more concise * refactor(anthropic,bedrock): hoist drop_params output_config warning to module constant Three call sites (anthropic chat, bedrock converse, bedrock invoke messages) emitted the same '...Effort is only supported on Opus 4.5+, Sonnet 4.6+, and Mythos Preview' warning verbatim. Extract DROP_UNSUPPORTED_OUTPUT_CONFIG_WARNING in litellm/llms/anthropic/chat/transformation.py and import it from the bedrock sites so future copy edits live in one place. Addresses Michael's review on PR #27074. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * refactor(anthropic,bedrock,databricks): factor BadRequestError for unknown reasoning_effort Three call sites raised the same BadRequestError("Invalid reasoning_effort: ... Must be one of 'minimal', 'low', ...") block when REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT returned None: anthropic chat map_openai_params, bedrock converse _handle_reasoning_effort_parameter, and databricks chat reasoning_effort path. Extract AnthropicConfig._raise_invalid_reasoning_effort(model, value, llm_provider) so future copy edits / valid-set changes happen in one place. Typed as NoReturn so type-checkers correctly narrow control flow at call sites. Addresses Michael's review on PR #27074. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * Clean up Redis semantic cache isolation fallback * fix(guardrails): align banned_keywords + azure_content_safety call_type gates with runtime route_type The hooks gated on ``call_type == "completion"`` but the proxy ingress passes ``route_type`` straight through as ``call_type`` — ``"acompletion"`` for /v1/chat/completions and ``"aresponses"`` for /v1/responses. Tests passed because they used the literal sync ``"completion"`` value, masking the gap. Switch both hooks to ``is_text_content_call_type`` (matches the canonical runtime values: completion / acompletion / aresponses) and update existing tests to assert against runtime values, plus parametrize a regression test that pins the gate. * fix: remove unused import * Add semantic cache legacy migration flag * Treat 0 team_member_budget as no cap * chore(caching): annotate qdrant quantization_params dict type Mypy infers the dict's value type from the first branch (Dict[str, bool]) which clashes with the scalar branch's mixed-type inner dict. Explicit Dict[str, Any] annotation lifts the inference. * chore(caching): remove allow_legacy_unscoped_cache_hits opt-in The flag was an opt-in escape hatch for the cross-tenant leak the rest of the patch closes — flipping it on (env var or constructor param) re-enables exactly the VERIA-54 primitive on either backend. There is no operational need that the secure path doesn't already meet: - Qdrant: legacy points without ``litellm_cache_key`` payload are excluded by the must-clause filter and treated as misses; new sets populate the cache key, so cold-start lasts only as long as the natural cache rebuild. - Redis: existing unscoped index can't carry the new schema; the init path falls back to ``{name}_isolated`` (and recreates it on stale schema), leaving the legacy index untouched. Drop the constructor param, env-var fallback, ``_using_legacy_unscoped_index`` flag, the legacy-reuse branch in ``_init_semantic_cache``, and the matching guards in set/get paths. Update tests to drop the legacy-mode cases and assert the secure-only behaviour. * fix(container): keep ownership-filter exceptions out of the LLM-error path filter_container_list_response runs after the upstream call has already succeeded; treating an ownership-lookup failure as an LLM-API error fires post_call_failure_hook for a successful upstream call and returns a misleading provider-shaped error to the client. Run the filter outside the try/except so genuine LLM errors stay scoped to the upstream call. * chore(container,skills): LRU eviction for owner caches; widen file_purpose Literal Two cleanups from the /simplify pass: * ``_CONTAINER_OWNER_CACHE`` and ``_SKILL_CACHE`` now LRU-evict via ``OrderedDict.popitem(last=False)`` instead of full ``clear()`` at capacity. Full clears converted a steady-state cached workload into a periodic full-DB-load oscillation as the cache repopulated from zero and cleared again. Reads now ``move_to_end`` so the just-touched entry survives the next eviction. Mirrors the pre-existing LRU pattern in ``_remember_container_owner``. * ``LiteLLM_ManagedObjectTable.file_purpose`` Literal now includes ``"container"`` so Pydantic validation accepts rows written by the ownership store. * chore(container,skills): drop legacy-access opt-out env vars LITELLM_ALLOW_UNTRACKED_CONTAINER_ACCESS and LITELLM_ALLOW_UNOWNED_SKILL_ACCESS were operator-toggleable opt-outs for the cross-tenant access primitive this PR closes — flipping either on re-enabled exactly the VERIA-20 read path. Default-secure with no escape hatch matches sibling fixes (vector-store cred isolation, semantic cache key isolation, user_config strip): all rejected the opt-out-of-security pattern. Untracked containers and unowned skills (rows that pre-date this enforcement) are admin-only. Non-admin owners need to either re-create via the now-tracked flow or have an admin assign ``created_by`` on the existing row. Update tests to assert the strict-only behaviour. * fix(ownership): reject identity-less callers instead of sharing a sentinel scope UNSCOPED_RESOURCE_OWNER_SCOPE collapsed every caller without an identity field (no user_id / team_id / org_id / api_key / token) into a single shared owner — a cross-tenant access primitive: any two such callers could see and delete each other's containers and skills. Drop the sentinel. ``get_primary_resource_owner_scope`` returns ``None`` and ``get_resource_owner_scopes`` returns ``[]`` for identity-less callers. ``record_container_owner`` and ``LiteLLMSkillsHandler.create_skill`` now reject creates from identity-less callers with a 403 instead of stamping the placeholder. Read paths already deny ``owner is None`` correctly so legacy rows (if any) are admin-only. * fix(proxy): include request-blocked callback params in auth bans * fix: keep skills handler FastAPI-free; fold gcs deny list into the body bouncer Two cleanups: * ``LiteLLMSkillsHandler.create_skill`` raised ``HTTPException`` for identity-less callers, importing FastAPI from a ``litellm/llms/`` module — that violates the project rule that FastAPI lives only under ``proxy/``. Switch to ``ValueError`` (the same shape the rest of the handler uses for not-found/forbidden) and update the test. * The proxy-auth body bouncer derived its observability ban list from ``_supported_callback_params`` only, missing ``_request_blocked_callback_params`` (where ``gcs_bucket_name`` and ``gcs_path_service_account`` live). Two recently-merged sibling PRs (#27019 added the deny list, #27081 added the test asserting these are rejected at the request body root) crossed without folding them together. Union the GCS deny list into the bouncer's derivation so the single source of truth covers both code paths. * fix(proxy): normalize managed resource team owner field * chore: simplify ownership tracking — drop thin stores, in-memory fallback, hand-rolled cache Substantial reduction (~765 LOC) without changing the security boundary: * Drop ContainerOwnershipStore and LiteLLMSkillsStore — both were one-method-per-Prisma-call wrappers. Inline the calls instead, matching the established pattern in vector_store_endpoints, agent_endpoints, and mcp_server/db.py. * Drop the prisma_client is None in-memory fallback. Production deploys always have Prisma; running ownership-critical paths on a process-local dict is a security footgun in the dev-mode case it was meant to support, and complicates every code path with a branch. Fail-secure: skip recording if Prisma is unavailable, and treat reads as "not found" (admin-only). * Drop the hand-rolled module-level cache. Replace with the existing litellm.caching.in_memory_cache.InMemoryCache, which already has TTL + max-size + eviction tested in its own module. Sentinel string for negative caching since InMemoryCache can't disambiguate "miss" from "cached as None". * Tests: drop coverage for removed code paths (in-memory fallback, hand-rolled cache internals). Keep tests for actual behavior (cache hit-rate, negative caching, owner check, list filtering, identity-less reject, admin bypass). * fix(container): cache list-allow-set, track admin-created containers Address Greptile P2 follow-ups from the prior round: * Cache ``_get_allowed_container_ids`` (60s LRU/TTL keyed by sorted owner-scope tuple) so ``GET /v1/containers`` doesn't issue a fresh ``find_many`` against ``litellm_managedobjecttable`` on every list call. Invalidate the caller's own cache entry when they record a new owner so the just-created container shows up on their next list. * Tighten the admin early-return in ``record_container_owner`` to skip ONLY when there's literally no container ID to stamp. An admin with identity (the master-key path populates ``user_id`` + ``api_key``) flows through the normal record path so admin-created containers are tracked like any other caller's. The truly-identity-less admin case still falls through to the 403 below — correct fail-secure default. Skill-cache invalidation gap (also flagged by Greptile) is moot: there is no skill update endpoint exposed; ownership-affecting mutations are only delete (already invalidates) and create (new ID, no cache entry to update). * chore(container): use delete_cache, json-encode scope key, clean test /simplify follow-ups: * Replace the two-``pop`` reach into ``cache_dict``/``ttl_dict`` with the existing public ``InMemoryCache.delete_cache(key)`` — the same idiom used elsewhere in the proxy. Bonus: ``delete_cache`` calls ``_remove_key`` which also handles ``expiration_heap`` consistency the direct pops were silently leaking. * JSON-encode the sorted scope list for the cache key instead of ``"|".join``. ``user_id`` / ``team_id`` / ``org_id`` / ``api_key`` are free-form strings and could contain a literal ``|`` — JSON quoting escapes any in-string separator unambiguously. * Extract ``_allowed_container_ids_cache_key()`` so the read and invalidation sites compute the key the same way. * Fix a placeholder-then-overwrite test construction: the ``__module__.split(".")[0] and "proxy_admin"`` line evaluated to a literal string that was immediately overwritten with the real enum value. Hoist the import and construct directly. * [Fix] Tests: Replace deprecated openrouter/claude-3.7-sonnet with claude-sonnet-4.5 OpenRouter has dropped active endpoints for anthropic/claude-3.7-sonnet, causing test_reasoning_content_completion to fail with a 404 "No endpoints found" error. Switch to anthropic/claude-sonnet-4.5, which is current and supports reasoning streaming. * feat: routing groups ui * fix(security): prevent secret_fields from leaking into spend logs secret_fields (containing raw HTTP headers including Authorization Bearer tokens) was being included in proxy_server_request['body'] because the body snapshot was a copy.copy(data) of the full request dict. This body gets serialized and persisted in the LiteLLM_SpendLogs table, exposing user credentials in the database. Root cause: data['secret_fields'] was set before the body snapshot at data['proxy_server_request']['body'] = copy.copy(data), so the full raw headers (including auth tokens) ended up in the snapshot. Fix (defense in depth): 1. Exclude 'secret_fields' when creating the body snapshot in litellm_pre_call_utils.py (primary fix) 2. Strip 'secret_fields' in _sanitize_request_body_for_spend_logs_payload as a secondary safeguard secret_fields remains available on the live data dict for legitimate downstream consumers (MCP, Responses API). Co-authored-by: Krrish Dholakia <krrish-berri-2@users.noreply.github.com> * chore: update Next.js build artifacts (2026-05-05 02:13 UTC, node v20.20.2) * [Fix] Proxy: Break managed-resources import cycle on Python 3.13 The Python 3.13 CCI smoke matrix surfaces a partially-initialized-module ImportError when loading the managed files hook chain: litellm.proxy.hooks/__init__ (mid-import) -> enterprise.enterprise_hooks -> litellm_enterprise.proxy.hooks.managed_files -> litellm.llms.base_llm.managed_resources.isolation -> litellm.proxy.management_endpoints.common_utils -> litellm.proxy.utils (re-enters litellm.proxy.hooks) The except ImportError block in hooks/__init__.py silently swallowed the failure, leaving managed_files unregistered and POST /files returning 500 "Managed files hook not found". Two-layer fix: - Inline the 3-line _user_has_admin_view check in isolation.py instead of importing it from litellm.proxy.management_endpoints.common_utils. litellm.llms.* should not depend on litellm.proxy.* — removing this layering violation breaks the cycle at its root. - Define PROXY_HOOKS and get_proxy_hook before the conditional enterprise import in litellm/proxy/hooks/__init__.py, so any future re-entry resolves the public names instead of hitting an ImportError on a partially-initialized module. Also fold in two unrelated CCI repairs surfaced in the same staging run: - tests/otel_tests/test_key_logging_callbacks.py: per-key gcs_bucket_name / gcs_path_service_account are now stripped by initialize_dynamic_callback_params, so the GCS client falls through to the env-only branch. Update the assertion to match the new "GCS_BUCKET_NAME is not set" message. - .circleci/config.yml: tests/pass_through_tests now resolves google-auth-library@10.x via the @google-cloud/vertexai 1.12.0 bump, which uses dynamic ESM imports Jest 29 cannot load without --experimental-vm-modules. Pass that flag in the Vertex JS test step. Adds tests/test_litellm/proxy/hooks/test_proxy_hooks_init.py as a regression guard: managed_files / managed_vector_stores must register, and isolation.py must not transitively import litellm.proxy.utils. * [Fix] Proxy: Address Greptile feedback on hook-cycle PR - Move _user_has_admin_view to litellm.proxy._types as user_api_key_has_admin_view (single source of truth). common_utils.py and isolation.py both import from there now, removing the duplicated role-check that could silently diverge if new admin roles are added. - Add pytest.importorskip("litellm_enterprise") to the two regression tests that assert managed_files / managed_vector_stores are registered; those keys come from ENTERPRISE_PROXY_HOOKS so the tests would fail unconditionally in a checkout without the enterprise extra installed. * [Fix] Lint: Mark _user_has_admin_view re-export in common_utils Ruff F401 flagged the aliased import as unused within common_utils.py because the name is consumed only by external modules (~15 callers across guardrails, spend tracking, MCP, agents, management endpoints). Add `# noqa: F401 re-exported` so the alias survives lint while keeping a single source of truth in litellm.proxy._types. * refactor(azure): move image gen JSON helper; rename image edit finalize hook - Add image_generation/http_utils.azure_deployment_image_generation_json_body; call from azure.py (keeps AzureChatCompletion focused on chat). - Rename finalize_image_edit_multipart_data to finalize_image_edit_request_data with docstring covering multipart and JSON POST payloads (review feedback). Co-authored-by: Cursor <cursoragent@cursor.com> * test(proxy): cover health_check_reasoning_effort for completion mode Co-authored-by: Cursor <cursoragent@cursor.com> * [Fix] Tests: Use master key for /otel-spans in test_chat_completion_check_otel_spans /otel-spans now requires proxy admin (returns 401 'Only proxy admin can be used to generate, delete, update info for new keys/users/teams. Route=/otel-spans' for non-admin callers). Switch the GET call to use the master key sk-1234 while keeping the generated key for the chat-completion request that produces the spans. * [Fix] Tests: Pick chat-completion OTEL trace by content, not recency The /otel-spans endpoint returns process-wide spans and tags most_recent_parent by max start_time. After tightening that route to proxy_admin (sk-1234), the GET /otel-spans request itself emits auth spans that beat the chat-completion spans on start_time, so most_recent_parent now points at the request's own auth trace (['postgres', 'postgres']) and the >=5-span assertion fails. Pick the chat-completion trace by content: it is the only trace whose span list is a superset of {postgres, redis, raw_gen_ai_request, batch_write_to_db}. Verified locally end-to-end against otel_test_config.yaml + OTEL_EXPORTER=in_memory: 3/3 runs green. * [Fix] CI: Enable VCR replay for test_azure_o_series The Azure o-series tests were excluded from the conftest's VCR auto-marker because of a respx/vcrpy transport-patching conflict, but the only respx reference in the file was an unused `MockRouter` import. Drop the dead import and remove the file from the conflict set so cassettes record on first run and replay thereafter, eliminating the 60-95s live Azure latency that was crashing xdist workers under --timeout=120 thread-mode timeouts. * [Fix] Tests: Restore /metrics access for prometheus test suite /metrics now requires auth by default; tests/otel_tests/test_prometheus.py makes 4+ unauthenticated GETs against http://0.0.0.0:4000/metrics, so every prometheus test in CI now fails the metric assertion. Set require_auth_for_metrics_endpoint: false in otel_test_config.yaml to opt out for this test job, which scrapes /metrics directly. Verified locally: 8/8 prometheus tests green (one flaky retry on test_proxy_success_metrics that pre-dates this PR). Also drop the -x stop-on-first-failure flag from the otel test command so all failures in the job surface in a single CI run rather than hiding behind whichever one trips first. * [Perf] CI: Skip Redundant Playwright Apt Install in E2E UI Job The cimg/python:3.12-browsers base image already ships every Chromium system dependency Playwright needs (libnss3, libatk-bridge2.0-0, libcups2, etc. — the install log shows them all as "already the newest version"). Passing --with-deps to `npx playwright install` therefore runs an apt-get update + install for nothing, but pays the full cost of hitting Ubuntu mirrors. On a recent run those mirrors stalled hard: apt-get update alone took 6m53s at 81.5 kB/s with several archives returning connection refused. Drop --with-deps and persist ~/.cache/ms-playwright alongside node_modules so the Chromium binary is also reused across runs. Bump the cache key to v2 so the existing v1 entry (which only contained node_modules) is not loaded and skipped over the new browser path. * [Fix] Docker: Remove Hardcoded Prisma Binary Target For Multi-Arch Builds PRISMA_CLI_BINARY_TARGETS="debian-openssl-3.0.x" was hardcoded in docker/Dockerfile.non_root by #17695. On a buildx linux/arm64 leg this forces prisma to download the amd64 schema-engine into an arm64 image, so 'prisma migrate deploy' fails at startup with 'Could not find schema-engine binary'. Removing the env lets prisma auto-detect per build platform: amd64 builds still resolve to debian-openssl-3.0.x (Wolfi falls back to debian, same binary as before), and arm64 builds now correctly fetch linux-arm64-openssl-3.0.x. The offline-cache pre-warm goal of #17695 is preserved — only which binaries fill the cache changes. Fixes #19458 * [Fix] UI: Clear Admin Session Cookies Before Establishing Invited User's Session (#27227) The invite-signup form was writing the new user's token via raw `document.cookie` at `path=/`, while the rest of the auth surface uses `storeLoginToken` (which writes at `path=/ui` and mirrors to sessionStorage). After signup the inviter's `path=/ui` cookie kept winning path-specificity matching, and sessionStorage still held the inviter's token, so the dashboard rendered as the inviter rather than the newly created user. Treat invite signup as a principal-change boundary — clear prior session cookies first, then store the new token via the canonical helper. * test: add 24hr Redis-backed VCR cache to additional test suites (#27159) * test: add 24hr Redis-backed VCR cache to additional test suites Extracts the existing llm_translation VCR plumbing into a reusable helper (tests/_vcr_conftest_common.py) and wires it into the conftest.py files of the test directories listed in LIT-2787: audio_tests, batches_tests, guardrails_tests, image_gen_tests, litellm_utils_tests, local_testing, logging_callback_tests, pass_through_unit_tests, router_unit_tests, unified_google_tests The same helper is also adopted by the pre-existing llm_translation and llm_responses_api_testing conftests to remove the copy-pasted VCR setup. Each consuming conftest: - registers the Redis persister via pytest_recording_configure - auto-marks collected tests with pytest.mark.vcr (skipping respx-using files where applicable, since respx and vcrpy both patch httpx) - gates cassette writes on test success via _vcr_outcome_gate The cache is opt-in via CASSETTE_REDIS_URL; when unset, VCR is disabled and tests hit live providers as before. LITELLM_VCR_DISABLE=1 still forces a bypass for ad-hoc local runs. Test directories that run LiteLLM proxy in Docker (build_and_test, proxy_logging_guardrails_model_info_tests, proxy_store_model_in_db_tests) are intentionally not included: VCR.py patches the in-process httpx transport and cannot intercept calls made from inside a Docker container. The installing_litellm_on_python* jobs make no LLM calls and don't benefit from caching. https://linear.app/litellm-ai/issue/LIT-2787/add-24hr-caching-to-additional-test-suites * test(vcr): add safe-body matcher to handle JSONL and binary request bodies vcrpy's stock body matcher inspects Content-Type and unconditionally runs json.loads on application/json bodies. JSON Lines payloads (used by the Bedrock batch S3 PUT and other upload paths) crash that with json.JSONDecodeError: Extra data, before the matcher can return 'not a match'. This was the root cause of the batches_testing CI job failing on test_async_create_file once VCR auto-marking was applied to the batches_tests directory. Add a conservative byte-equality body matcher and use it in place of 'body' in the shared match_on tuple. The matcher is strictly more conservative than vcrpy's default — the only thing it gives up is 'different JSON key order is treated as the same body', which doesn't apply to deterministic litellm-built request payloads. It can never produce a false positive that the default would have rejected, so there is no cross-contamination risk. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): exclude tests that VCR replay actively breaks A few tests are incompatible with cassette replay and were failing on the latest CI run after VCR auto-marking was extended to local_testing and logging_callback_tests: - test_amazing_s3_logs.py (logging_callback_tests): the test asserts on a per-run response_id that should round-trip through a real S3 PUT/LIST. vcrpy's boto3 stub intercepts the PUT and the LIST replays stale keys, so the freshly-generated id is never found. - test_async_embedding_azure (logging_callback_tests) and test_amazing_sync_embedding (local_testing): the failure branches deliberately pass api_key='my-bad-key' to assert that the failure callback fires. We scrub auth headers from cassettes (so the bad-key request matches the prior good-key request), and vcrpy replays the recorded 200 — the failure callback never fires. - test_assistants.py (local_testing): the OpenAI Assistants polling APIs mint fresh thread/run IDs every recording session and then poll until status=='completed'. Replays of those polled GETs can never match a freshly-generated run id, so every CI run effectively re-records and the suite blows past the 15m no_output_timeout. Skip these from VCR auto-marking so they continue to hit live providers as they did before this change. The remaining tests in each directory still get cached. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): expand skip lists for second batch of incompatible tests Followup to the previous commit. After re-running CI on the rebuilt branch, three more tests surfaced as VCR-replay-incompatible: - litellm_utils_testing :: test_get_valid_models_from_dynamic_api_key Calls GET /v1/models with api_key='123' to assert the result is empty. We scrub auth headers, so the bad-key request matches the prior good-key cassette and replays the recorded model list. - litellm_utils_testing :: test_litellm_overhead.py Measures litellm_overhead_time_ms as a percentage of total wall-clock time. With cached responses the upstream 'network' time collapses to microseconds, blowing past the 40%% threshold the test asserts on. Skip the whole file (every parametrization is at risk). - local_testing_part1 :: test_async_custom_handler_completion and test_async_custom_handler_embedding Same bad-key failure-callback pattern as the already-skipped test_amazing_sync_embedding. - litellm_router_testing :: test_router_caching.py Asserts on litellm's own router-level response cache by comparing response1.id to response2.id across repeat upstream calls (test bypasses litellm cache via ttl=0 and expects upstream to return a *new* id). With VCR replay both upstream calls return the same cassette body, so the ids are identical. Skip the whole file. - logging_callback_tests :: test_async_chat_azure (preemptive) Same shape as already-skipped test_async_embedding_azure; was masked by upstream OpenAI rate-limit failures on baseline. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): use item.path and tighten matcher docstring - Replace pytest's deprecated item.fspath with item.path in apply_vcr_auto_marker_to_items so we don't emit deprecation warnings under pytest 8. - Clarify _safe_body_matcher docstring to reflect actual behavior (direct == first, then UTF-8 bytes comparison, no repr fallback). Addresses Greptile review feedback on PR #27159. * test(vcr): swallow all RedisError on cassette save/load Cassette persistence is strictly best-effort: any Redis-side failure (connection blip, timeout, OutOfMemoryError when the maxmemory cap is hit, READONLY replicas, etc.) should degrade to 'test passed but cassette not cached' rather than fail the test on teardown. Previously the persister only caught ConnectionError and TimeoutError, so OutOfMemoryError — which Redis Cloud raises when the cassette cache hits its memory cap and there are no evictable keys — propagated out of vcrpy's autouse fixture and ERRORed otherwise-passing tests on teardown. This caused the litellm_utils_testing CircleCI job to fail on the latest commit's run, even though the underlying test was a unit test that used mock_response and produced no real upstream traffic (the cassette was dirtied by a background langfuse callback). The rerun only succeeded because Redis evictions happened to free enough room before the SET — i.e. it was timing-dependent flakiness. Catch redis.exceptions.RedisError (the common base of all server- and client-side Redis exceptions) on both save and load, and parametrize the regression tests across ConnectionError, TimeoutError, and OutOfMemoryError to pin the new behavior. * test(vcr): surface cassette-cache failures with warnings + session banner When the persister silently swallows a Redis OOM (or any RedisError) on save/load there is otherwise no visible signal that the cache is degraded — tests pass, the cassette just isn't persisted, and the next session still hits the same Redis at the same near-cap memory. Add three layers of observability so that failure mode is loud: 1. Per-process health counters ("save_failures", "load_failures", and the last error string for each), exposed via cassette_cache_health() and reset via reset_cassette_cache_health(). The persister increments these in addition to logging. 2. VCRCassetteCacheWarning (UserWarning subclass) emitted via warnings.warn() inside the persister's except block. Pytest's built-in warnings summary at session end automatically lists every such warning, so the failure is visible in CI logs without any conftest-level wiring. 3. Session-end banner via emit_cassette_cache_session_banner() and a stderr-fallback atexit handler registered from register_persister_if_enabled(). Two states: - red "VCR CASSETTE CACHE DEGRADED" when save_failures or load_failures > 0 - yellow "VCR CASSETTE CACHE NEAR CAPACITY" (no failures, but used_memory >= 85% of maxmemory) so the next session knows the Redis is approaching OOM before any SET actually fails Capacity comes from a best-effort INFO memory probe (cassette_cache_capacity_snapshot) that returns None on any failure or when maxmemory is uncapped. The atexit handler skips xdist workers so only the controller emits. Tests: parametrize the existing save/load swallow-error tests across ConnectionError/TimeoutError/OutOfMemoryError, add direct tests for the health counters and warning emission, and a new test_vcr_conftest_common_banner.py covering banner output for every state (silent/red/yellow/disabled/xdist-worker). * test(vcr): bucket cassettes by API key fingerprint, drop bad-key skips Tests that deliberately call an LLM API with a bad key (e.g. to assert that the failure callback fires, or that check_valid_key returns False) were being silently served the prior good-key cassette: we scrub the real Authorization / x-api-key header from the cassette before storing it, so a follow-up bad-key call is byte-identical to the good-key call under the existing match_on tuple. Add a 'key_fingerprint' custom matcher that distinguishes requests by the SHA-256 of their API-key headers. The fingerprint is stamped into a synthetic 'x-litellm-key-fp' header by a new before_record_request hook, which then strips the real auth headers (we have to do the scrubbing here instead of via vcrpy's filter_headers knob, because filter_headers runs *first* and would erase the value we want to hash). Bad-key requests now get a different cassette bucket than good-key requests, so vcrpy will not replay a recorded 200 in place of the expected 401. The fingerprint is a one-way hash of the secret, so cassettes never contain the key. This permanently removes the 'bad-key' category of skips: - tests/local_testing: dropped ::test_amazing_sync_embedding, ::test_async_custom_handler_completion, ::test_async_custom_handler_embedding - tests/logging_callback_tests: dropped ::test_async_chat_azure, ::test_async_embedding_azure - tests/litellm_utils_tests: dropped ::test_get_valid_models_from_dynamic_api_key Coverage: 7 new unit tests in tests/test_litellm/test_vcr_safe_body_matcher.py covering header stripping, fingerprint determinism, no-auth bucketing, good-vs-bad key discrimination, x-api-key (Anthropic/Azure) discrimination, and idempotence under replay. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): drop redundant comments and docstrings Trim narration of code that is already self-evident from function and variable names. Keep the two genuinely non-obvious bits: - ordering constraint between filter_headers and before_record_request, which would invite a maintainer to re-introduce the bug if removed - the per-directory _VCR_INCOMPATIBLE_FILES rationale, since 'why exactly is this skipped' is not knowable from the test name alone Also drop the 40-line commented-out drop-in conftest snippet at the bottom of _vcr_conftest_common.py — the consuming conftests are the canonical reference. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): make _before_record_request idempotent vcrpy invokes before_record_request more than once per request: can_play_response_for calls it, then __contains__ / _responses (reached via play_response) call it again on the result. The second invocation sees a request whose auth headers we already stripped, so a naive recompute yields "no-key" and overwrites the real fingerprint stored in the header. This makes can_play_response_for and play_response disagree on matchability — the former says "yes, we have a stored response for this" (matching no-key to no-key) and the latter throws UnhandledHTTPRequestError because it computes a fresh real fingerprint that doesn't match the stored no-key. In CI this manifested as ~30 failing tests across guardrails_testing, audio_testing, batches_testing, image_gen_testing, llm_responses_api, litellm_router_unit_testing, etc. Skip the recompute when the header is already set, so re-applying the hook is a no-op. Adds a regression test that fires the hook twice on the same dict and asserts the fingerprint stays put. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): drop more redundant docstrings and headers * test(vcr): enable 24hr cache for ocr_tests and search_tests These two directories were the only non-dockerized test suites in the build_and_test workflow that make live LLM/provider API calls but were not VCR-enabled by this PR. Together they account for 96 tests: - tests/ocr_tests/ (31): Mistral OCR, Azure AI OCR, Azure Document Intelligence, Vertex AI OCR. Pure-unit tests inside the same files (e.g. TestAzureDocumentIntelligencePagesParam) make no HTTP calls and become benign VCR NOOPs. - tests/search_tests/ (65): Brave, DataForSEO, DuckDuckGo, Exa, Firecrawl, Google PSE, Linkup, Parallel.ai, Perplexity, SearchAPI, Searxng, Serper, Tavily. Both directories use the canonical minimal conftest pattern from tests/audio_tests/conftest.py with no skip lists. None of the test files use respx, none assert on per-call upstream non-determinism (no response1.id != response2.id, no overhead-as-fraction-of-total, no live polling), so the default match_on tuple should cache cleanly. If a flake surfaces during the first cassette-recording CI run, we can add a targeted skip the same way we did for the other dirs. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * [Fix] Team UI: handle legacy dict shape for metadata.guardrails (#27224) * [Fix] Team UI: handle legacy dict shape for metadata.guardrails A team can have metadata.guardrails stored as {"modify_guardrails": bool} (the permission-flag shape introduced in PR #4810) rather than the expected string[]. The opt-out logic added in PR #25575 calls .filter() on this field, which throws TypeError on a dict and crashes the team detail page. Add a safeGuardrailsList helper that returns [] when the field is not an array, and route the three read sites through it. * [Fix] Team UI: inline Array.isArray guards for guardrails metadata Replace the safeGuardrailsList helper with inline Array.isArray checks at each call site, and apply the same guard to opted_out_global_guardrails for consistency. No known legacy dict rows for opted_out_global_guardrails, but the unguarded `|| []` pattern is the same shape risk. Six call sites now defended directly: three for metadata.guardrails and three for metadata.opted_out_global_guardrails. * chore: update Next.js build artifacts (2026-05-05 22:45 UTC, node v20.20.2) (#27240) * [Infra] Bump deps (#27157) * bump: version 0.4.70 → 0.4.71 * bump: version 0.1.39 → 0.1.40 * uv lock --------- Co-authored-by: Michael Riad Zaky <michaelr@Mac.localdomain> Co-authored-by: Mateo Wang <277851410+mateo-berri@users.noreply.github.com> Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> Co-authored-by: ryan-crabbe-berri <ryan@berri.ai> Co-authored-by: user <70670632+stuxf@users.noreply.github.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: shivam <shivam@berri.ai> Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> Co-authored-by: Yassin Kortam <yassin@berri.ai> Co-authored-by: Krrish Dholakia <krrish+github@berri.ai> Co-authored-by: shin-berri <shin-laptop@berri.ai> Co-authored-by: Sameer Kankute <sameer@berri.ai> Co-authored-by: Sameer Kankute <Sameerlite@users.noreply.github.com> Co-authored-by: Michael-RZ-Berri <michael@berri.ai> Co-authored-by: harish-berri <harish@berri.ai> Co-authored-by: Yassin Kortam <yassinkortam@g.ucla.edu> Co-authored-by: Michael Riad Zaky <michaelr@Michaels-MacBook-Air.local> Co-authored-by: Krrish Dholakia <krrish-berri-2@users.noreply.github.com>
3781 lines
126 KiB
Python
3781 lines
126 KiB
Python
#### What this tests ####
|
|
# This tests streaming for the completion endpoint
|
|
|
|
import asyncio
|
|
import json
|
|
import os
|
|
import sys
|
|
import time
|
|
import traceback
|
|
from litellm._uuid import uuid
|
|
from typing import Tuple
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
import pytest
|
|
from pydantic import BaseModel
|
|
|
|
import litellm.litellm_core_utils
|
|
import litellm.litellm_core_utils.litellm_logging
|
|
from litellm.utils import ModelResponseListIterator
|
|
from litellm.types.utils import ModelResponseStream
|
|
|
|
sys.path.insert(
|
|
0, os.path.abspath("../..")
|
|
) # Adds the parent directory to the system path
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv()
|
|
import random
|
|
|
|
import litellm
|
|
from litellm import (
|
|
AuthenticationError,
|
|
BadRequestError,
|
|
ModelResponse,
|
|
RateLimitError,
|
|
acompletion,
|
|
completion,
|
|
)
|
|
|
|
litellm.logging = False
|
|
litellm.set_verbose = True
|
|
litellm.num_retries = 3
|
|
litellm.cache = None
|
|
|
|
score = 0
|
|
|
|
|
|
def logger_fn(model_call_object: dict):
|
|
print(f"model call details: {model_call_object}")
|
|
|
|
|
|
user_message = "Hello, how are you?"
|
|
messages = [{"content": user_message, "role": "user"}]
|
|
|
|
|
|
first_openai_chunk_example = {
|
|
"id": "chatcmpl-7zSKLBVXnX9dwgRuDYVqVVDsgh2yp",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1694881253,
|
|
"model": "gpt-4-0613",
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"delta": {"role": "assistant", "content": ""},
|
|
"finish_reason": None, # it's null
|
|
}
|
|
],
|
|
}
|
|
|
|
|
|
def validate_first_format(chunk):
|
|
# write a test to make sure chunk follows the same format as first_openai_chunk_example
|
|
assert isinstance(chunk, ModelResponseStream), "Chunk should be a dictionary."
|
|
assert isinstance(chunk["id"], str), "'id' should be a string."
|
|
assert isinstance(chunk["object"], str), "'object' should be a string."
|
|
assert isinstance(chunk["created"], int), "'created' should be an integer."
|
|
assert isinstance(chunk["model"], str), "'model' should be a string."
|
|
assert isinstance(chunk["choices"], list), "'choices' should be a list."
|
|
assert getattr(chunk, "usage", None) is None, "Chunk cannot contain usage"
|
|
|
|
for choice in chunk["choices"]:
|
|
assert isinstance(choice["index"], int), "'index' should be an integer."
|
|
assert isinstance(
|
|
choice["delta"]["role"], str
|
|
), f"'role' should be a string. Got {choice['delta']['role']}"
|
|
assert "messages" not in choice
|
|
# openai v1.0.0 returns content as None
|
|
assert (choice["finish_reason"] is None) or isinstance(
|
|
choice["finish_reason"], str
|
|
), "'finish_reason' should be None or a string."
|
|
|
|
|
|
second_openai_chunk_example = {
|
|
"id": "chatcmpl-7zSKLBVXnX9dwgRuDYVqVVDsgh2yp",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1694881253,
|
|
"model": "gpt-4-0613",
|
|
"choices": [
|
|
{"index": 0, "delta": {"content": "Hello"}, "finish_reason": None} # it's null
|
|
],
|
|
}
|
|
|
|
|
|
def validate_second_format(chunk):
|
|
assert isinstance(chunk, ModelResponseStream), "Chunk should be a dictionary."
|
|
assert isinstance(chunk["id"], str), "'id' should be a string."
|
|
assert isinstance(chunk["object"], str), "'object' should be a string."
|
|
assert isinstance(chunk["created"], int), "'created' should be an integer."
|
|
assert isinstance(chunk["model"], str), "'model' should be a string."
|
|
assert isinstance(chunk["choices"], list), "'choices' should be a list."
|
|
assert getattr(chunk, "usage", None) is None, "Chunk cannot contain usage"
|
|
|
|
for choice in chunk["choices"]:
|
|
assert isinstance(choice["index"], int), "'index' should be an integer."
|
|
assert hasattr(choice["delta"], "role"), "'role' should be a string."
|
|
# openai v1.0.0 returns content as None
|
|
assert (choice["finish_reason"] is None) or isinstance(
|
|
choice["finish_reason"], str
|
|
), "'finish_reason' should be None or a string."
|
|
|
|
|
|
last_openai_chunk_example = {
|
|
"id": "chatcmpl-7zSKLBVXnX9dwgRuDYVqVVDsgh2yp",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1694881253,
|
|
"model": "gpt-4-0613",
|
|
"choices": [{"index": 0, "delta": {}, "finish_reason": "stop"}],
|
|
}
|
|
|
|
"""
|
|
Final chunk (sdk):
|
|
chunk: ChatCompletionChunk(id='chatcmpl-96mM3oNBlxh2FDWVLKsgaFBBcULmI',
|
|
choices=[Choice(delta=ChoiceDelta(content=None, function_call=None, role=None,
|
|
tool_calls=None), finish_reason='stop', index=0, logprobs=None)],
|
|
created=1711402871, model='gpt-3.5-turbo-0125', object='chat.completion.chunk', system_fingerprint='fp_3bc1b5746c')
|
|
"""
|
|
|
|
|
|
def validate_last_format(chunk):
|
|
"""
|
|
Ensure last chunk has no remaining content or tools
|
|
"""
|
|
assert isinstance(chunk, ModelResponseStream), "Chunk should be a dictionary."
|
|
assert isinstance(chunk["id"], str), "'id' should be a string."
|
|
assert isinstance(chunk["object"], str), "'object' should be a string."
|
|
assert isinstance(chunk["created"], int), "'created' should be an integer."
|
|
assert isinstance(chunk["model"], str), "'model' should be a string."
|
|
assert isinstance(chunk["choices"], list), "'choices' should be a list."
|
|
assert getattr(chunk, "usage", None) is None, "Chunk cannot contain usage"
|
|
|
|
for choice in chunk["choices"]:
|
|
assert isinstance(choice["index"], int), "'index' should be an integer."
|
|
assert choice["delta"]["content"] is None
|
|
assert choice["delta"]["function_call"] is None
|
|
assert choice["delta"]["role"] is None
|
|
assert choice["delta"]["tool_calls"] is None
|
|
assert isinstance(
|
|
choice["finish_reason"], str
|
|
), "'finish_reason' should be a string."
|
|
|
|
|
|
def streaming_format_tests(idx, chunk) -> Tuple[str, bool]:
|
|
extracted_chunk = ""
|
|
finished = False
|
|
print(f"chunk: {chunk}")
|
|
if idx == 0: # ensure role assistant is set
|
|
validate_first_format(chunk=chunk)
|
|
role = chunk["choices"][0]["delta"]["role"]
|
|
assert role == "assistant"
|
|
elif idx == 1: # second chunk
|
|
validate_second_format(chunk=chunk)
|
|
if idx != 0: # ensure no role
|
|
if "role" in chunk["choices"][0]["delta"]:
|
|
pass # openai v1.0.0+ passes role = None
|
|
if chunk["choices"][0][
|
|
"finish_reason"
|
|
]: # ensure finish reason is only in last chunk
|
|
validate_last_format(chunk=chunk)
|
|
finished = True
|
|
if (
|
|
"content" in chunk["choices"][0]["delta"]
|
|
and chunk["choices"][0]["delta"]["content"] is not None
|
|
):
|
|
extracted_chunk = chunk["choices"][0]["delta"]["content"]
|
|
print(f"extracted chunk: {extracted_chunk}")
|
|
return extracted_chunk, finished
|
|
|
|
|
|
tools_schema = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
},
|
|
}
|
|
]
|
|
|
|
# def test_completion_cohere_stream():
|
|
# # this is a flaky test due to the cohere API endpoint being unstable
|
|
# try:
|
|
# messages = [
|
|
# {"role": "system", "content": "You are a helpful assistant."},
|
|
# {
|
|
# "role": "user",
|
|
# "content": "how does a court case get to the Supreme Court?",
|
|
# },
|
|
# ]
|
|
# response = completion(
|
|
# model="command-nightly", messages=messages, stream=True, max_tokens=50,
|
|
# )
|
|
# complete_response = ""
|
|
# # Add any assertions here to check the response
|
|
# has_finish_reason = False
|
|
# for idx, chunk in enumerate(response):
|
|
# chunk, finished = streaming_format_tests(idx, chunk)
|
|
# has_finish_reason = finished
|
|
# if finished:
|
|
# break
|
|
# complete_response += chunk
|
|
# if has_finish_reason is False:
|
|
# raise Exception("Finish reason not in final chunk")
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
# print(f"completion_response: {complete_response}")
|
|
# except Exception as e:
|
|
# pytest.fail(f"Error occurred: {e}")
|
|
|
|
# test_completion_cohere_stream()
|
|
|
|
|
|
def test_completion_azure_stream_special_char():
|
|
litellm.set_verbose = True
|
|
messages = [{"role": "user", "content": "hi. respond with the <xml> tag only"}]
|
|
response = completion(model="azure/gpt-4.1-mini", messages=messages, stream=True)
|
|
response_str = ""
|
|
for part in response:
|
|
response_str += part.choices[0].delta.content or ""
|
|
print(f"response_str: {response_str}")
|
|
assert len(response_str) > 0
|
|
|
|
|
|
def test_completion_azure_stream_content_filter_no_delta():
|
|
"""
|
|
Tests streaming from Azure when the chunks have no delta because they represent the filtered content
|
|
"""
|
|
try:
|
|
chunks = [
|
|
{
|
|
"id": "chatcmpl-9SQxdH5hODqkWyJopWlaVOOUnFwlj",
|
|
"choices": [
|
|
{
|
|
"delta": {"content": "", "role": "assistant"},
|
|
"finish_reason": None,
|
|
"index": 0,
|
|
}
|
|
],
|
|
"created": 1716563849,
|
|
"model": "gpt-4o-2024-05-13",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": "fp_5f4bad809a",
|
|
},
|
|
{
|
|
"id": "chatcmpl-9SQxdH5hODqkWyJopWlaVOOUnFwlj",
|
|
"choices": [
|
|
{"delta": {"content": "This"}, "finish_reason": None, "index": 0}
|
|
],
|
|
"created": 1716563849,
|
|
"model": "gpt-4o-2024-05-13",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": "fp_5f4bad809a",
|
|
},
|
|
{
|
|
"id": "chatcmpl-9SQxdH5hODqkWyJopWlaVOOUnFwlj",
|
|
"choices": [
|
|
{"delta": {"content": " is"}, "finish_reason": None, "index": 0}
|
|
],
|
|
"created": 1716563849,
|
|
"model": "gpt-4o-2024-05-13",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": "fp_5f4bad809a",
|
|
},
|
|
{
|
|
"id": "chatcmpl-9SQxdH5hODqkWyJopWlaVOOUnFwlj",
|
|
"choices": [
|
|
{"delta": {"content": " a"}, "finish_reason": None, "index": 0}
|
|
],
|
|
"created": 1716563849,
|
|
"model": "gpt-4o-2024-05-13",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": "fp_5f4bad809a",
|
|
},
|
|
{
|
|
"id": "chatcmpl-9SQxdH5hODqkWyJopWlaVOOUnFwlj",
|
|
"choices": [
|
|
{"delta": {"content": " dummy"}, "finish_reason": None, "index": 0}
|
|
],
|
|
"created": 1716563849,
|
|
"model": "gpt-4o-2024-05-13",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": "fp_5f4bad809a",
|
|
},
|
|
{
|
|
"id": "chatcmpl-9SQxdH5hODqkWyJopWlaVOOUnFwlj",
|
|
"choices": [
|
|
{
|
|
"delta": {"content": " response"},
|
|
"finish_reason": None,
|
|
"index": 0,
|
|
}
|
|
],
|
|
"created": 1716563849,
|
|
"model": "gpt-4o-2024-05-13",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": "fp_5f4bad809a",
|
|
},
|
|
{
|
|
"id": "",
|
|
"choices": [
|
|
{
|
|
"finish_reason": None,
|
|
"index": 0,
|
|
"content_filter_offsets": {
|
|
"check_offset": 35159,
|
|
"start_offset": 35159,
|
|
"end_offset": 36150,
|
|
},
|
|
"content_filter_results": {
|
|
"hate": {"filtered": False, "severity": "safe"},
|
|
"self_harm": {"filtered": False, "severity": "safe"},
|
|
"sexual": {"filtered": False, "severity": "safe"},
|
|
"violence": {"filtered": False, "severity": "safe"},
|
|
},
|
|
}
|
|
],
|
|
"created": 0,
|
|
"model": "",
|
|
"object": "",
|
|
},
|
|
{
|
|
"id": "chatcmpl-9SQxdH5hODqkWyJopWlaVOOUnFwlj",
|
|
"choices": [
|
|
{"delta": {"content": "."}, "finish_reason": None, "index": 0}
|
|
],
|
|
"created": 1716563849,
|
|
"model": "gpt-4o-2024-05-13",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": "fp_5f4bad809a",
|
|
},
|
|
{
|
|
"id": "chatcmpl-9SQxdH5hODqkWyJopWlaVOOUnFwlj",
|
|
"choices": [{"delta": {}, "finish_reason": "stop", "index": 0}],
|
|
"created": 1716563849,
|
|
"model": "gpt-4o-2024-05-13",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": "fp_5f4bad809a",
|
|
},
|
|
{
|
|
"id": "",
|
|
"choices": [
|
|
{
|
|
"finish_reason": None,
|
|
"index": 0,
|
|
"content_filter_offsets": {
|
|
"check_offset": 36150,
|
|
"start_offset": 36060,
|
|
"end_offset": 37029,
|
|
},
|
|
"content_filter_results": {
|
|
"hate": {"filtered": False, "severity": "safe"},
|
|
"self_harm": {"filtered": False, "severity": "safe"},
|
|
"sexual": {"filtered": False, "severity": "safe"},
|
|
"violence": {"filtered": False, "severity": "safe"},
|
|
},
|
|
}
|
|
],
|
|
"created": 0,
|
|
"model": "",
|
|
"object": "",
|
|
},
|
|
]
|
|
|
|
chunk_list = []
|
|
for chunk in chunks:
|
|
new_chunk = litellm.ModelResponseStream(id=chunk["id"])
|
|
if "choices" in chunk and isinstance(chunk["choices"], list):
|
|
new_choices = []
|
|
for choice in chunk["choices"]:
|
|
if isinstance(choice, litellm.utils.StreamingChoices):
|
|
_new_choice = choice
|
|
elif isinstance(choice, dict):
|
|
_new_choice = litellm.utils.StreamingChoices(**choice)
|
|
new_choices.append(_new_choice)
|
|
new_chunk.choices = new_choices
|
|
chunk_list.append(new_chunk)
|
|
|
|
completion_stream = ModelResponseListIterator(model_responses=chunk_list)
|
|
|
|
litellm.set_verbose = True
|
|
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=completion_stream,
|
|
model="gpt-4-0613",
|
|
custom_llm_provider="cached_response",
|
|
logging_obj=litellm.Logging(
|
|
model="gpt-4-0613",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
call_type="completion",
|
|
start_time=time.time(),
|
|
litellm_call_id="12345",
|
|
function_id="1245",
|
|
),
|
|
)
|
|
|
|
for idx, chunk in enumerate(response):
|
|
complete_response = ""
|
|
for idx, chunk in enumerate(response):
|
|
# print
|
|
delta = chunk.choices[0].delta
|
|
content = delta.content if delta else None
|
|
complete_response += content or ""
|
|
if chunk.choices[0].finish_reason is not None:
|
|
break
|
|
assert len(complete_response) > 0
|
|
|
|
except Exception as e:
|
|
pytest.fail(f"An exception occurred - {str(e)}")
|
|
|
|
|
|
@pytest.mark.flaky(retries=5, delay=1)
|
|
def test_completion_azure_stream():
|
|
try:
|
|
litellm.set_verbose = False
|
|
messages = [
|
|
{"role": "system", "content": "You are a helpful assistant."},
|
|
{
|
|
"role": "user",
|
|
"content": "how does a court case get to the Supreme Court?",
|
|
},
|
|
]
|
|
response = completion(
|
|
model="azure/gpt-4.1-mini", messages=messages, stream=True, max_tokens=50
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
for idx, init_chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, init_chunk)
|
|
complete_response += chunk
|
|
custom_llm_provider = init_chunk._hidden_params["custom_llm_provider"]
|
|
print(f"custom_llm_provider: {custom_llm_provider}")
|
|
assert custom_llm_provider == "azure"
|
|
if finished:
|
|
assert isinstance(init_chunk.choices[0], litellm.utils.StreamingChoices)
|
|
break
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_azure_stream()
|
|
|
|
|
|
def test_completion_azure_function_calling_stream():
|
|
try:
|
|
litellm.set_verbose = False
|
|
user_message = "What is the current weather in Boston?"
|
|
messages = [{"content": user_message, "role": "user"}]
|
|
response = completion(
|
|
model="azure/gpt-4.1-mini",
|
|
messages=messages,
|
|
stream=True,
|
|
tools=tools_schema,
|
|
)
|
|
# Add any assertions here to check the response
|
|
for chunk in response:
|
|
print(chunk)
|
|
if chunk["choices"][0]["finish_reason"] == "stop":
|
|
break
|
|
print(chunk["choices"][0]["finish_reason"])
|
|
print(chunk["choices"][0]["delta"]["content"])
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_azure_function_calling_stream()
|
|
|
|
|
|
@pytest.mark.skip("Flaky ollama test - needs to be fixed")
|
|
def test_completion_ollama_hosted_stream():
|
|
try:
|
|
# litellm.set_verbose = True
|
|
response = completion(
|
|
model="ollama/phi",
|
|
messages=messages,
|
|
max_tokens=100,
|
|
num_retries=3,
|
|
timeout=20,
|
|
# api_base="https://test-ollama-endpoint.onrender.com",
|
|
stream=True,
|
|
)
|
|
# Add any assertions here to check the response
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
for idx, init_chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, init_chunk)
|
|
complete_response += chunk
|
|
if finished:
|
|
assert isinstance(init_chunk.choices[0], litellm.utils.StreamingChoices)
|
|
break
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"complete_response: {complete_response}")
|
|
except Exception as e:
|
|
if "try pulling it first" in str(e):
|
|
return
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_ollama_hosted_stream()
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
# "claude-3-5-haiku-20241022",
|
|
# "mistral/mistral-small-latest",
|
|
"openrouter/openai/gpt-4o-mini",
|
|
],
|
|
)
|
|
def test_completion_model_stream(model):
|
|
try:
|
|
messages = [
|
|
{"role": "system", "content": "You are a helpful assistant."},
|
|
{
|
|
"role": "user",
|
|
"content": "how does a court case get to the Supreme Court?",
|
|
},
|
|
]
|
|
response = completion(
|
|
model=model, messages=messages, stream=True, max_tokens=50
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
break
|
|
complete_response += chunk
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"sync_mode",
|
|
[True, False],
|
|
) # ,
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.flaky(retries=3, delay=1)
|
|
async def test_completion_gemini_stream(sync_mode):
|
|
try:
|
|
litellm._turn_on_debug()
|
|
print("Streaming gemini response")
|
|
function1 = [
|
|
{
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
}
|
|
]
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": "What is the weather like in Boston, MA?. You must provide me with a tool call in your response.",
|
|
}
|
|
]
|
|
print("testing gemini streaming")
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
non_empty_chunks = 0
|
|
chunks = []
|
|
if sync_mode:
|
|
response = completion(
|
|
model="gemini/gemini-2.5-flash-lite",
|
|
messages=messages,
|
|
stream=True,
|
|
functions=function1,
|
|
)
|
|
|
|
for idx, chunk in enumerate(response):
|
|
print(chunk)
|
|
chunks.append(chunk)
|
|
# print(chunk.choices[0].delta)
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
break
|
|
non_empty_chunks += 1
|
|
complete_response += chunk
|
|
else:
|
|
response = await litellm.acompletion(
|
|
model="gemini/gemini-2.5-flash-lite",
|
|
messages=messages,
|
|
stream=True,
|
|
functions=function1,
|
|
)
|
|
|
|
idx = 0
|
|
async for chunk in response:
|
|
print(chunk)
|
|
chunks.append(chunk)
|
|
# print(chunk.choices[0].delta)
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
break
|
|
non_empty_chunks += 1
|
|
complete_response += chunk
|
|
idx += 1
|
|
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
|
|
complete_response = litellm.stream_chunk_builder(
|
|
chunks=chunks, messages=messages
|
|
)
|
|
|
|
assert complete_response.choices[0].message.function_call is not None
|
|
|
|
# assert non_empty_chunks > 1
|
|
except litellm.InternalServerError as e:
|
|
pass
|
|
except litellm.RateLimitError as e:
|
|
pass
|
|
except Exception as e:
|
|
# if "429 Resource has been exhausted":
|
|
# return
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# asyncio.run(test_acompletion_gemini_stream())
|
|
def gemini_mock_post_streaming(url, **kwargs):
|
|
# This generator simulates the streaming response with partial JSON content
|
|
def stream_response():
|
|
chunks = [
|
|
"{",
|
|
'"candidates": [{"content": {"parts": [{"text": "Twelve"}],"role": "model"},"finishReason": "STOP","index": 0}],"usageMetadata": {"promptTokenCount": 8,"candidatesTokenCount": 1,"totalTokenCount": 9',
|
|
"}}\n\n", # This is the continuation of the previous chunk
|
|
'data: {"candidates": [{"content": {"parts": [{"text": "-year-old Finn was never one for adventure. He preferred the comfort of',
|
|
' his room, his nose buried in a book, to the chaotic world outside."}],"role": "model"},"finishReason": "STOP","index": 0,"safetyRatings": [{"category": "HARM_CATEGORY_SEXUALLY_EXPLICIT","probability": "NEGLIGIBLE"},{"category": "HARM_CATEGORY_HATE_SPEECH","probability": "NEGLIGIBLE"},{"category": "HARM_CATEGORY_HARASSMENT","probability": "NEGLIGIBLE"},{"category": "HARM_CATEGORY_DANGEROUS_CONTENT","probability": "NEGLIGIBLE"}]}],"usageMetadata": {"promptTokenCount": 8,"candidatesTokenCount": 17,"totalTokenCount": 25}}\n\n',
|
|
# Add more chunks as needed
|
|
]
|
|
for chunk in chunks:
|
|
yield chunk
|
|
|
|
mock_response = MagicMock()
|
|
mock_response.status_code = 200
|
|
mock_response.headers = {"Content-Type": "text/event-stream"}
|
|
mock_response.iter_lines = MagicMock(return_value=stream_response())
|
|
|
|
return mock_response
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"sync_mode",
|
|
[True],
|
|
) # ,
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.flaky(retries=3, delay=1)
|
|
async def test_completion_gemini_stream_accumulated_json(sync_mode):
|
|
try:
|
|
from litellm.llms.custom_httpx.http_handler import AsyncHTTPHandler, HTTPHandler
|
|
|
|
litellm.set_verbose = True
|
|
print("Streaming gemini response")
|
|
function1 = [
|
|
{
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
}
|
|
]
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": "What is the weather like in Boston, MA?. You must provide me with a tool call in your response.",
|
|
}
|
|
]
|
|
print("testing gemini streaming")
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
non_empty_chunks = 0
|
|
chunks = []
|
|
if sync_mode:
|
|
client = HTTPHandler(concurrent_limit=1)
|
|
with patch.object(
|
|
client, "post", side_effect=gemini_mock_post_streaming
|
|
) as mock_client:
|
|
response = completion(
|
|
model="gemini/gemini-2.5-flash-lite",
|
|
messages=messages,
|
|
stream=True,
|
|
functions=function1,
|
|
client=client,
|
|
)
|
|
|
|
for idx, chunk in enumerate(response):
|
|
print(chunk)
|
|
chunks.append(chunk)
|
|
# print(chunk.choices[0].delta)
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
print(f"finished: {finished}")
|
|
if finished:
|
|
break
|
|
non_empty_chunks += 1
|
|
complete_response += chunk
|
|
|
|
mock_client.assert_called_once()
|
|
else:
|
|
client = AsyncHTTPHandler(concurrent_limit=1)
|
|
with patch.object(
|
|
client, "post", side_effect=gemini_mock_post_streaming
|
|
) as mock_client:
|
|
response = await litellm.acompletion(
|
|
model="gemini/gemini-2.5-flash-lite",
|
|
messages=messages,
|
|
stream=True,
|
|
functions=function1,
|
|
)
|
|
|
|
idx = 0
|
|
async for chunk in response:
|
|
print(chunk)
|
|
chunks.append(chunk)
|
|
# print(chunk.choices[0].delta)
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
break
|
|
non_empty_chunks += 1
|
|
complete_response += chunk
|
|
idx += 1
|
|
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
|
|
assert (
|
|
complete_response
|
|
== "Twelve-year-old Finn was never one for adventure. He preferred the comfort of his room, his nose buried in a book, to the chaotic world outside."
|
|
)
|
|
# assert non_empty_chunks > 1
|
|
except litellm.InternalServerError as e:
|
|
pass
|
|
except litellm.RateLimitError as e:
|
|
pass
|
|
except Exception as e:
|
|
# if "429 Resource has been exhausted":
|
|
# return
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
@pytest.mark.flaky(retries=3, delay=1)
|
|
def test_completion_mistral_api_mistral_large_function_call_with_streaming():
|
|
litellm.set_verbose = True
|
|
tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
},
|
|
}
|
|
]
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": "What's the weather like in Boston today in fahrenheit?",
|
|
}
|
|
]
|
|
try:
|
|
# test without max tokens
|
|
response = completion(
|
|
model="mistral/mistral-medium-latest",
|
|
messages=messages,
|
|
tools=tools,
|
|
tool_choice="auto",
|
|
stream=True,
|
|
)
|
|
saw_function_call_chunk = False
|
|
for chunk in response:
|
|
print(f"chunk in response: {chunk}")
|
|
assert chunk._hidden_params["custom_llm_provider"] == "mistral"
|
|
if len(chunk.choices) == 0:
|
|
continue
|
|
if chunk.choices[0].finish_reason is not None: # last chunk
|
|
validate_final_streaming_function_calling_chunk(chunk=chunk)
|
|
break
|
|
tool_calls = chunk.choices[0].delta.tool_calls
|
|
if tool_calls is None:
|
|
continue
|
|
assert tool_calls[0].function.arguments is not None
|
|
assert isinstance(tool_calls[0].function.arguments, str)
|
|
if not saw_function_call_chunk:
|
|
if chunk.choices[0].delta.role is not None:
|
|
validate_first_streaming_function_calling_chunk(chunk=chunk)
|
|
else:
|
|
validate_second_streaming_function_calling_chunk(chunk=chunk)
|
|
saw_function_call_chunk = True
|
|
else:
|
|
validate_second_streaming_function_calling_chunk(chunk=chunk)
|
|
assert saw_function_call_chunk
|
|
except litellm.RateLimitError:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_mistral_api_stream()
|
|
|
|
|
|
@pytest.mark.skip()
|
|
def test_completion_nlp_cloud_stream():
|
|
try:
|
|
messages = [
|
|
{"role": "system", "content": "You are a helpful assistant."},
|
|
{
|
|
"role": "user",
|
|
"content": "how does a court case get to the Supreme Court?",
|
|
},
|
|
]
|
|
print("testing nlp cloud streaming")
|
|
response = completion(
|
|
model="nlp_cloud/finetuned-llama-2-70b",
|
|
messages=messages,
|
|
stream=True,
|
|
max_tokens=20,
|
|
)
|
|
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
complete_response += chunk
|
|
if finished:
|
|
break
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
except Exception as e:
|
|
print(f"Error occurred: {e}")
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_nlp_cloud_stream()
|
|
|
|
|
|
def test_completion_claude_stream_bad_key():
|
|
try:
|
|
litellm.cache = None
|
|
litellm.set_verbose = True
|
|
api_key = "bad-key"
|
|
messages = [
|
|
{"role": "system", "content": "You are a helpful assistant."},
|
|
{
|
|
"role": "user",
|
|
"content": "how does a court case get to the Supreme Court?",
|
|
},
|
|
]
|
|
response = completion(
|
|
model="claude-haiku-4-5-20251001",
|
|
messages=messages,
|
|
stream=True,
|
|
max_tokens=50,
|
|
api_key=api_key,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
has_finish_reason = False
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
has_finish_reason = True
|
|
break
|
|
complete_response += chunk
|
|
if has_finish_reason == False:
|
|
raise Exception("finish reason not set")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"1234completion_response: {complete_response}")
|
|
raise Exception("Auth error not raised")
|
|
except AuthenticationError as e:
|
|
print("Auth Error raised")
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_claude_stream_bad_key()
|
|
# test_completion_replicate_stream()
|
|
|
|
|
|
@pytest.mark.parametrize("provider", ["vertex_ai_beta"]) # ""
|
|
def test_vertex_ai_stream(provider):
|
|
from test_amazing_vertex_completion import (
|
|
load_vertex_ai_credentials,
|
|
)
|
|
|
|
load_vertex_ai_credentials()
|
|
litellm.set_verbose = True
|
|
import random
|
|
|
|
test_models = ["gemini-2.5-flash-lite"]
|
|
for model in test_models:
|
|
try:
|
|
print("making request", model)
|
|
response = completion(
|
|
model="{}/{}".format(provider, model),
|
|
messages=[
|
|
{"role": "user", "content": "Hey, how's it going?"},
|
|
{
|
|
"role": "assistant",
|
|
"content": "I'm doing well. Would like to hear the rest of the story?",
|
|
},
|
|
{"role": "user", "content": "Na"},
|
|
{
|
|
"role": "assistant",
|
|
"content": "No problem, is there anything else i can help you with today?",
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": "I think you're getting cut off sometimes",
|
|
},
|
|
],
|
|
stream=True,
|
|
)
|
|
complete_response = ""
|
|
is_finished = False
|
|
for idx, chunk in enumerate(response):
|
|
print(f"chunk in response: {chunk}")
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
is_finished = True
|
|
break
|
|
complete_response += chunk
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
assert is_finished == True
|
|
|
|
except litellm.RateLimitError as e:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# def test_completion_vertexai_stream():
|
|
# try:
|
|
# import os
|
|
# os.environ["VERTEXAI_PROJECT"] = "pathrise-convert-1606954137718"
|
|
# os.environ["VERTEXAI_LOCATION"] = "us-central1"
|
|
# messages = [
|
|
# {"role": "system", "content": "You are a helpful assistant."},
|
|
# {
|
|
# "role": "user",
|
|
# "content": "how does a court case get to the Supreme Court?",
|
|
# },
|
|
# ]
|
|
# response = completion(
|
|
# model="vertex_ai/chat-bison", messages=messages, stream=True, max_tokens=50
|
|
# )
|
|
# complete_response = ""
|
|
# has_finish_reason = False
|
|
# # Add any assertions here to check the response
|
|
# for idx, chunk in enumerate(response):
|
|
# chunk, finished = streaming_format_tests(idx, chunk)
|
|
# has_finish_reason = finished
|
|
# if finished:
|
|
# break
|
|
# complete_response += chunk
|
|
# if has_finish_reason is False:
|
|
# raise Exception("finish reason not set for last chunk")
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
# print(f"completion_response: {complete_response}")
|
|
# except InvalidRequestError as e:
|
|
# pass
|
|
# except Exception as e:
|
|
# pytest.fail(f"Error occurred: {e}")
|
|
|
|
# test_completion_vertexai_stream()
|
|
|
|
|
|
# def test_completion_vertexai_stream_bad_key():
|
|
# try:
|
|
# import os
|
|
# messages = [
|
|
# {"role": "system", "content": "You are a helpful assistant."},
|
|
# {
|
|
# "role": "user",
|
|
# "content": "how does a court case get to the Supreme Court?",
|
|
# },
|
|
# ]
|
|
# response = completion(
|
|
# model="vertex_ai/chat-bison", messages=messages, stream=True, max_tokens=50
|
|
# )
|
|
# complete_response = ""
|
|
# has_finish_reason = False
|
|
# # Add any assertions here to check the response
|
|
# for idx, chunk in enumerate(response):
|
|
# chunk, finished = streaming_format_tests(idx, chunk)
|
|
# has_finish_reason = finished
|
|
# if finished:
|
|
# break
|
|
# complete_response += chunk
|
|
# if has_finish_reason is False:
|
|
# raise Exception("finish reason not set for last chunk")
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
# print(f"completion_response: {complete_response}")
|
|
# except InvalidRequestError as e:
|
|
# pass
|
|
# except Exception as e:
|
|
# pytest.fail(f"Error occurred: {e}")
|
|
|
|
# test_completion_vertexai_stream_bad_key()
|
|
|
|
|
|
@pytest.mark.skip(reason="Replicate extremely flaky.")
|
|
@pytest.mark.parametrize("sync_mode", [False, True])
|
|
@pytest.mark.asyncio
|
|
async def test_completion_replicate_llama3_streaming(sync_mode):
|
|
litellm.set_verbose = True
|
|
model_name = "replicate/meta/meta-llama-3-8b-instruct"
|
|
try:
|
|
if sync_mode:
|
|
final_chunk: Optional[litellm.ModelResponse] = None
|
|
response: litellm.CustomStreamWrapper = completion( # type: ignore
|
|
model=model_name,
|
|
messages=messages,
|
|
max_tokens=10, # type: ignore
|
|
stream=True,
|
|
num_retries=3,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
has_finish_reason = False
|
|
for idx, chunk in enumerate(response):
|
|
final_chunk = chunk
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
has_finish_reason = True
|
|
break
|
|
complete_response += chunk
|
|
if has_finish_reason == False:
|
|
raise Exception("finish reason not set")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
else:
|
|
response: litellm.CustomStreamWrapper = await litellm.acompletion( # type: ignore
|
|
model=model_name,
|
|
messages=messages,
|
|
max_tokens=100, # type: ignore
|
|
stream=True,
|
|
num_retries=3,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
has_finish_reason = False
|
|
idx = 0
|
|
final_chunk: Optional[litellm.ModelResponse] = None
|
|
async for chunk in response:
|
|
final_chunk = chunk
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
has_finish_reason = True
|
|
break
|
|
complete_response += chunk
|
|
idx += 1
|
|
if has_finish_reason == False:
|
|
raise Exception("finish reason not set")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
except litellm.UnprocessableEntityError as e:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# TEMP Commented out - replicate throwing an auth error
|
|
# try:
|
|
# litellm.set_verbose = True
|
|
# messages = [
|
|
# {"role": "system", "content": "You are a helpful assistant."},
|
|
# {
|
|
# "role": "user",
|
|
# "content": "how does a court case get to the Supreme Court?",
|
|
# },
|
|
# ]
|
|
# response = completion(
|
|
# model="replicate/meta/llama-2-70b-chat:02e509c789964a7ea8736978a43525956ef40397be9033abf9fd2badfe68c9e3", messages=messages, stream=True, max_tokens=50
|
|
# )
|
|
# complete_response = ""
|
|
# has_finish_reason = False
|
|
# # Add any assertions here to check the response
|
|
# for idx, chunk in enumerate(response):
|
|
# chunk, finished = streaming_format_tests(idx, chunk)
|
|
# has_finish_reason = finished
|
|
# if finished:
|
|
# break
|
|
# complete_response += chunk
|
|
# if has_finish_reason is False:
|
|
# raise Exception("finish reason not set for last chunk")
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
# print(f"completion_response: {complete_response}")
|
|
# except InvalidRequestError as e:
|
|
# pass
|
|
# except Exception as e:
|
|
# pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
@pytest.mark.parametrize("sync_mode", [True, False]) #
|
|
@pytest.mark.parametrize(
|
|
"model, region",
|
|
[
|
|
# ["bedrock/ai21.jamba-instruct-v1:0", "us-east-1"],
|
|
# ["bedrock/cohere.command-r-plus-v1:0", None],
|
|
["anthropic.claude-3-sonnet-20240229-v1:0", None],
|
|
# ["mistral.mistral-7b-instruct-v0:2", None],
|
|
# ["meta.llama3-8b-instruct-v1:0", None],
|
|
],
|
|
)
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.flaky(retries=3, delay=1)
|
|
async def test_bedrock_httpx_streaming(sync_mode, model, region):
|
|
try:
|
|
litellm.set_verbose = True
|
|
if sync_mode:
|
|
final_chunk: Optional[litellm.ModelResponse] = None
|
|
response: litellm.CustomStreamWrapper = completion( # type: ignore
|
|
model=model,
|
|
messages=messages,
|
|
max_tokens=10, # type: ignore
|
|
stream=True,
|
|
aws_region_name=region,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
has_finish_reason = False
|
|
for idx, chunk in enumerate(response):
|
|
final_chunk = chunk
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
has_finish_reason = True
|
|
break
|
|
complete_response += chunk
|
|
if has_finish_reason is False:
|
|
raise Exception("finish reason not set")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
else:
|
|
response: litellm.CustomStreamWrapper = await litellm.acompletion( # type: ignore
|
|
model=model,
|
|
messages=messages,
|
|
max_tokens=100, # type: ignore
|
|
stream=True,
|
|
aws_region_name=region,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
has_finish_reason = False
|
|
idx = 0
|
|
final_chunk: Optional[litellm.ModelResponse] = None
|
|
async for chunk in response:
|
|
final_chunk = chunk
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
has_finish_reason = True
|
|
break
|
|
complete_response += chunk
|
|
idx += 1
|
|
if has_finish_reason == False:
|
|
raise Exception("finish reason not set")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}\n\nFinalChunk: {final_chunk}")
|
|
except RateLimitError as e:
|
|
print("got rate limit error=", e)
|
|
pass
|
|
except litellm.Timeout:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
def test_bedrock_claude_3_streaming():
|
|
try:
|
|
litellm.set_verbose = True
|
|
response: ModelResponse = completion( # type: ignore
|
|
model="bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
|
|
messages=messages,
|
|
max_tokens=10, # type: ignore
|
|
stream=True,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
has_finish_reason = False
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
has_finish_reason = True
|
|
break
|
|
complete_response += chunk
|
|
if has_finish_reason == False:
|
|
raise Exception("finish reason not set")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
except RateLimitError:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
@pytest.mark.parametrize("sync_mode", [True, False])
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
"claude-haiku-4-5-20251001",
|
|
"cohere.command-r-plus-v1:0", # bedrock
|
|
"gpt-3.5-turbo",
|
|
],
|
|
)
|
|
@pytest.mark.asyncio
|
|
async def test_parallel_streaming_requests(sync_mode, model):
|
|
"""
|
|
Important prod test.
|
|
"""
|
|
try:
|
|
import threading
|
|
|
|
litellm.set_verbose = True
|
|
messages = [
|
|
{"role": "system", "content": "Be helpful"},
|
|
{"role": "user", "content": "What do you know?"},
|
|
]
|
|
|
|
def sync_test_streaming():
|
|
response: litellm.CustomStreamWrapper = litellm.completion( # type: ignore
|
|
model=model,
|
|
messages=messages,
|
|
stream=True,
|
|
max_tokens=10,
|
|
timeout=10,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to-check the response
|
|
num_finish_reason = 0
|
|
for chunk in response:
|
|
print(f"chunk: {chunk}")
|
|
if isinstance(chunk, ModelResponseStream):
|
|
if chunk.choices[0].finish_reason is not None:
|
|
num_finish_reason += 1
|
|
assert num_finish_reason == 1
|
|
|
|
async def test_streaming():
|
|
response: litellm.CustomStreamWrapper = await litellm.acompletion( # type: ignore
|
|
model=model,
|
|
messages=messages,
|
|
stream=True,
|
|
max_tokens=10,
|
|
timeout=10,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to-check the response
|
|
num_finish_reason = 0
|
|
async for chunk in response:
|
|
print(f"type of chunk: {type(chunk)}")
|
|
if isinstance(chunk, ModelResponseStream):
|
|
print(f"OUTSIDE CHUNK: {chunk.choices[0]}")
|
|
if chunk.choices[0].finish_reason is not None:
|
|
num_finish_reason += 1
|
|
assert num_finish_reason == 1
|
|
|
|
tasks = []
|
|
for _ in range(2):
|
|
if sync_mode == False:
|
|
tasks.append(test_streaming())
|
|
else:
|
|
thread = threading.Thread(target=sync_test_streaming)
|
|
thread.start()
|
|
tasks.append(thread)
|
|
|
|
if sync_mode == False:
|
|
await asyncio.gather(*tasks)
|
|
else:
|
|
# Wait for all threads to complete
|
|
for thread in tasks:
|
|
thread.join()
|
|
|
|
except RateLimitError:
|
|
pass
|
|
except litellm.Timeout:
|
|
pass
|
|
except litellm.ServiceUnavailableError as e:
|
|
if model == "predibase/llama-3-8b-instruct":
|
|
pass
|
|
else:
|
|
pytest.fail(f"Service Unavailable Error got{str(e)}")
|
|
except litellm.InternalServerError as e:
|
|
if "predibase" in str(e).lower():
|
|
# only skip internal server error from predibase - their endpoint seems quite unstable
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
@pytest.mark.skip(reason="Replicate changed exceptions")
|
|
def test_completion_replicate_stream_bad_key():
|
|
try:
|
|
api_key = "bad-key"
|
|
messages = [
|
|
{"role": "system", "content": "You are a helpful assistant."},
|
|
{
|
|
"role": "user",
|
|
"content": "how does a court case get to the Supreme Court?",
|
|
},
|
|
]
|
|
response = completion(
|
|
model="replicate/meta/llama-2-70b-chat:02e509c789964a7ea8736978a43525956ef40397be9033abf9fd2badfe68c9e3",
|
|
messages=messages,
|
|
stream=True,
|
|
max_tokens=50,
|
|
api_key=api_key,
|
|
)
|
|
complete_response = ""
|
|
# Add any assertions here to check the response
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
break
|
|
complete_response += chunk
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
except AuthenticationError as e:
|
|
# this is an auth error with a bad key
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_replicate_stream_bad_key()
|
|
|
|
# test_completion_bedrock_claude_stream()
|
|
|
|
|
|
@pytest.mark.skip(reason="model end of life")
|
|
def test_completion_bedrock_ai21_stream():
|
|
try:
|
|
litellm.set_verbose = False
|
|
response = completion(
|
|
model="bedrock/ai21.j2-mid-v1",
|
|
messages=[
|
|
{
|
|
"role": "user",
|
|
"content": "Be as verbose as possible and give as many details as possible, how does a court case get to the Supreme Court?",
|
|
}
|
|
],
|
|
temperature=1,
|
|
max_tokens=20,
|
|
stream=True,
|
|
)
|
|
print(response)
|
|
complete_response = ""
|
|
has_finish_reason = False
|
|
# Add any assertions here to check the response
|
|
for idx, chunk in enumerate(response):
|
|
# print
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
has_finish_reason = finished
|
|
complete_response += chunk
|
|
if finished:
|
|
break
|
|
if has_finish_reason is False:
|
|
raise Exception("finish reason not set for last chunk")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
except RateLimitError:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_bedrock_ai21_stream()
|
|
|
|
|
|
def test_completion_bedrock_mistral_stream():
|
|
try:
|
|
litellm.set_verbose = False
|
|
response = completion(
|
|
model="bedrock/mistral.mixtral-8x7b-instruct-v0:1",
|
|
messages=[
|
|
{
|
|
"role": "user",
|
|
"content": "Be as verbose as possible and give as many details as possible, how does a court case get to the Supreme Court?",
|
|
}
|
|
],
|
|
temperature=1,
|
|
max_tokens=20,
|
|
stream=True,
|
|
)
|
|
print(response)
|
|
complete_response = ""
|
|
has_finish_reason = False
|
|
# Add any assertions here to check the response
|
|
for idx, chunk in enumerate(response):
|
|
# print
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
has_finish_reason = finished
|
|
complete_response += chunk
|
|
if finished:
|
|
break
|
|
if has_finish_reason is False:
|
|
raise Exception("finish reason not set for last chunk")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"completion_response: {complete_response}")
|
|
except RateLimitError:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
@pytest.mark.skip(reason="stopped using TokenIterator")
|
|
def test_sagemaker_weird_response():
|
|
"""
|
|
When the stream ends, flush any remaining holding chunks.
|
|
"""
|
|
try:
|
|
import json
|
|
|
|
from litellm.llms.sagemaker.completion.handler import TokenIterator
|
|
|
|
chunk = """<s>[INST] Hey, how's it going? [/INST],
|
|
I'm doing well, thanks for asking! How about you? Is there anything you'd like to chat about or ask? I'm here to help with any questions you might have."""
|
|
|
|
data = "\n".join(
|
|
map(
|
|
lambda x: f"data: {json.dumps({'token': {'text': x.strip()}})}",
|
|
chunk.strip().split(","),
|
|
)
|
|
)
|
|
stream = bytes(data, encoding="utf8")
|
|
|
|
# Modify the array to be a dictionary with "PayloadPart" and "Bytes" keys.
|
|
stream_iterator = iter([{"PayloadPart": {"Bytes": stream}}])
|
|
|
|
token_iter = TokenIterator(stream_iterator)
|
|
|
|
# for token in token_iter:
|
|
# print(token)
|
|
litellm.set_verbose = True
|
|
|
|
logging_obj = litellm.Logging(
|
|
model="berri-benchmarking-Llama-2-70b-chat-hf-4",
|
|
messages=messages,
|
|
stream=True,
|
|
litellm_call_id="1234",
|
|
function_id="function_id",
|
|
call_type="acompletion",
|
|
start_time=time.time(),
|
|
)
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=token_iter,
|
|
model="berri-benchmarking-Llama-2-70b-chat-hf-4",
|
|
custom_llm_provider="sagemaker",
|
|
logging_obj=logging_obj,
|
|
)
|
|
complete_response = ""
|
|
for idx, chunk in enumerate(response):
|
|
# print
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
has_finish_reason = finished
|
|
complete_response += chunk
|
|
if finished:
|
|
break
|
|
assert len(complete_response) > 0
|
|
except Exception as e:
|
|
pytest.fail(f"An exception occurred - {str(e)}")
|
|
|
|
|
|
# test_sagemaker_weird_response()
|
|
|
|
|
|
# asyncio.run(test_sagemaker_streaming_async())
|
|
|
|
|
|
@pytest.mark.skip(reason="Account deleted by IBM.")
|
|
@pytest.mark.asyncio
|
|
async def test_completion_watsonx_stream():
|
|
litellm.set_verbose = True
|
|
from litellm.llms.custom_httpx.http_handler import AsyncHTTPHandler
|
|
|
|
try:
|
|
response = await acompletion(
|
|
model="watsonx/meta-llama/llama-3-1-8b-instruct",
|
|
messages=messages,
|
|
temperature=0.5,
|
|
max_tokens=20,
|
|
stream=True,
|
|
# client=client
|
|
)
|
|
complete_response = ""
|
|
has_finish_reason = False
|
|
# Add any assertions here to check the response
|
|
idx = 0
|
|
async for chunk in response:
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
has_finish_reason = finished
|
|
if finished:
|
|
break
|
|
complete_response += chunk
|
|
idx += 1
|
|
if has_finish_reason is False:
|
|
raise Exception("finish reason not set for last chunk")
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
except litellm.RateLimitError as e:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_sagemaker_stream()
|
|
|
|
|
|
# def test_maritalk_streaming():
|
|
# messages = [{"role": "user", "content": "Hey"}]
|
|
# try:
|
|
# response = completion("maritalk", messages=messages, stream=True)
|
|
# complete_response = ""
|
|
# start_time = time.time()
|
|
# for idx, chunk in enumerate(response):
|
|
# chunk, finished = streaming_format_tests(idx, chunk)
|
|
# complete_response += chunk
|
|
# if finished:
|
|
# break
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
# except Exception:
|
|
# pytest.fail(f"error occurred: {traceback.format_exc()}")
|
|
|
|
|
|
# ai21_completion_call()
|
|
|
|
|
|
# ai21_completion_call_bad_key()
|
|
|
|
|
|
@pytest.mark.skip(reason="flaky test")
|
|
@pytest.mark.asyncio
|
|
async def test_hf_completion_tgi_stream():
|
|
try:
|
|
response = await acompletion(
|
|
model="huggingface/HuggingFaceH4/zephyr-7b-beta",
|
|
messages=[{"content": "Hello, how are you?", "role": "user"}],
|
|
stream=True,
|
|
)
|
|
# Add any assertions here to check the response
|
|
print(f"response: {response}")
|
|
complete_response = ""
|
|
start_time = time.time()
|
|
idx = 0
|
|
async for chunk in response:
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
complete_response += chunk
|
|
if finished:
|
|
break
|
|
idx += 1
|
|
print(f"completion_response: {complete_response}")
|
|
except litellm.ServiceUnavailableError as e:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# hf_test_completion_tgi_stream()
|
|
|
|
# def test_completion_aleph_alpha():
|
|
# try:
|
|
# response = completion(
|
|
# model="luminous-base", messages=messages, stream=True
|
|
# )
|
|
# # Add any assertions here to check the response
|
|
# has_finished = False
|
|
# complete_response = ""
|
|
# start_time = time.time()
|
|
# for idx, chunk in enumerate(response):
|
|
# chunk, finished = streaming_format_tests(idx, chunk)
|
|
# has_finished = finished
|
|
# complete_response += chunk
|
|
# if finished:
|
|
# break
|
|
# if has_finished is False:
|
|
# raise Exception("finished reason missing from final chunk")
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
# except Exception as e:
|
|
# pytest.fail(f"Error occurred: {e}")
|
|
|
|
# # test_completion_aleph_alpha()
|
|
|
|
# def test_completion_aleph_alpha_bad_key():
|
|
# try:
|
|
# api_key = "bad-key"
|
|
# response = completion(
|
|
# model="luminous-base", messages=messages, stream=True, api_key=api_key
|
|
# )
|
|
# # Add any assertions here to check the response
|
|
# has_finished = False
|
|
# complete_response = ""
|
|
# start_time = time.time()
|
|
# for idx, chunk in enumerate(response):
|
|
# chunk, finished = streaming_format_tests(idx, chunk)
|
|
# has_finished = finished
|
|
# complete_response += chunk
|
|
# if finished:
|
|
# break
|
|
# if has_finished is False:
|
|
# raise Exception("finished reason missing from final chunk")
|
|
# if complete_response.strip() == "":
|
|
# raise Exception("Empty response received")
|
|
# except InvalidRequestError as e:
|
|
# pass
|
|
# except Exception as e:
|
|
# pytest.fail(f"Error occurred: {e}")
|
|
|
|
# test_completion_aleph_alpha_bad_key()
|
|
|
|
|
|
# test on openai completion call
|
|
def test_openai_chat_completion_call():
|
|
litellm.set_verbose = False
|
|
litellm.return_response_headers = True
|
|
response = completion(model="gpt-3.5-turbo", messages=messages, stream=True)
|
|
assert isinstance(
|
|
response._hidden_params["additional_headers"][
|
|
"llm_provider-x-ratelimit-remaining-requests"
|
|
],
|
|
str,
|
|
)
|
|
|
|
print(f"response._hidden_params: {response._hidden_params}")
|
|
complete_response = ""
|
|
start_time = time.time()
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
print(f"outside chunk: {chunk}")
|
|
if finished:
|
|
break
|
|
complete_response += chunk
|
|
# print(f'complete_chunk: {complete_response}')
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"complete response: {complete_response}")
|
|
|
|
|
|
# test_openai_chat_completion_call()
|
|
|
|
|
|
def test_openai_chat_completion_complete_response_call():
|
|
try:
|
|
complete_response = completion(
|
|
model="gpt-3.5-turbo",
|
|
messages=messages,
|
|
stream=True,
|
|
complete_response=True,
|
|
)
|
|
print(f"complete response: {complete_response}")
|
|
except Exception:
|
|
print(f"error occurred: {traceback.format_exc()}")
|
|
pass
|
|
|
|
|
|
# test_openai_chat_completion_complete_response_call()
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
"gpt-3.5-turbo",
|
|
"claude-haiku-4-5-20251001",
|
|
"o1",
|
|
],
|
|
)
|
|
@pytest.mark.parametrize(
|
|
"sync",
|
|
[True, False],
|
|
)
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.flaky(retries=6, delay=10)
|
|
async def test_openai_stream_options_call(model, sync):
|
|
litellm.enable_preview_features = True
|
|
litellm.set_verbose = True
|
|
usage = None
|
|
chunks = []
|
|
if sync:
|
|
response = litellm.completion(
|
|
model=model,
|
|
messages=[
|
|
{"role": "user", "content": "say GM - we're going to make it "},
|
|
],
|
|
stream=True,
|
|
stream_options={"include_usage": True},
|
|
)
|
|
for chunk in response:
|
|
print("chunk: ", chunk)
|
|
chunks.append(chunk)
|
|
else:
|
|
response = await litellm.acompletion(
|
|
model=model,
|
|
messages=[{"role": "user", "content": "say GM - we're going to make it "}],
|
|
stream=True,
|
|
stream_options={"include_usage": True},
|
|
)
|
|
|
|
async for chunk in response:
|
|
print("chunk: ", chunk)
|
|
chunks.append(chunk)
|
|
|
|
last_chunk = chunks[-1]
|
|
print("last chunk: ", last_chunk)
|
|
|
|
"""
|
|
Assert that:
|
|
- Last Chunk includes Usage
|
|
- All chunks prior to last chunk have usage=None
|
|
"""
|
|
|
|
assert last_chunk.usage is not None
|
|
assert isinstance(last_chunk.usage, litellm.Usage)
|
|
assert last_chunk.usage.total_tokens > 0
|
|
assert last_chunk.usage.prompt_tokens > 0
|
|
assert last_chunk.usage.completion_tokens > 0
|
|
|
|
# assert all non last chunks have usage=None
|
|
# Improved assertion with detailed error message
|
|
non_last_chunks_with_usage = [
|
|
chunk
|
|
for chunk in chunks[:-1]
|
|
if hasattr(chunk, "usage") and chunk.usage is not None
|
|
]
|
|
assert (
|
|
not non_last_chunks_with_usage
|
|
), f"Non-last chunks with usage not None:\n" + "\n".join(
|
|
f"Chunk ID: {chunk.id}, Usage: {chunk.usage}, Content: {chunk.choices[0].delta.content}"
|
|
for chunk in non_last_chunks_with_usage
|
|
)
|
|
|
|
|
|
def test_openai_stream_options_call_text_completion():
|
|
litellm.set_verbose = False
|
|
for idx in range(3):
|
|
try:
|
|
response = litellm.text_completion(
|
|
model="gpt-3.5-turbo-instruct",
|
|
prompt="say GM - we're going to make it ",
|
|
stream=True,
|
|
stream_options={"include_usage": True},
|
|
max_tokens=10,
|
|
)
|
|
usage = None
|
|
chunks = []
|
|
for chunk in response:
|
|
print("chunk: ", chunk)
|
|
chunks.append(chunk)
|
|
|
|
last_chunk = chunks[-1]
|
|
print("last chunk: ", last_chunk)
|
|
|
|
"""
|
|
Assert that:
|
|
- Last Chunk includes Usage
|
|
- All chunks prior to last chunk have usage=None
|
|
"""
|
|
|
|
assert last_chunk.usage is not None
|
|
assert last_chunk.usage.total_tokens > 0
|
|
assert last_chunk.usage.prompt_tokens > 0
|
|
assert last_chunk.usage.completion_tokens > 0
|
|
|
|
# assert all non last chunks have usage=None
|
|
assert all(chunk.usage is None for chunk in chunks[:-1])
|
|
break
|
|
except Exception as e:
|
|
if idx < 2:
|
|
pass
|
|
else:
|
|
raise e
|
|
|
|
|
|
def test_openai_text_completion_call():
|
|
try:
|
|
litellm.set_verbose = True
|
|
response = completion(
|
|
model="gpt-3.5-turbo-instruct", messages=messages, stream=True
|
|
)
|
|
complete_response = ""
|
|
start_time = time.time()
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
print(f"chunk: {chunk}")
|
|
complete_response += chunk
|
|
if finished:
|
|
break
|
|
# print(f'complete_chunk: {complete_response}')
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"complete response: {complete_response}")
|
|
except Exception:
|
|
print(f"error occurred: {traceback.format_exc()}")
|
|
pass
|
|
|
|
|
|
# test_openai_text_completion_call()
|
|
|
|
|
|
# # test on together ai completion call - starcoder
|
|
def test_together_ai_completion_call_mistral():
|
|
try:
|
|
litellm.set_verbose = False
|
|
start_time = time.time()
|
|
response = completion(
|
|
model="together_ai/mistralai/Mistral-7B-Instruct-v0.2",
|
|
messages=messages,
|
|
logger_fn=logger_fn,
|
|
stream=True,
|
|
)
|
|
complete_response = ""
|
|
print(f"returned response object: {response}")
|
|
has_finish_reason = False
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
has_finish_reason = finished
|
|
if finished:
|
|
break
|
|
complete_response += chunk
|
|
if has_finish_reason is False:
|
|
raise Exception("Finish reason not set for last chunk")
|
|
if complete_response == "":
|
|
raise Exception("Empty response received")
|
|
print(f"complete response: {complete_response}")
|
|
except Exception:
|
|
print(f"error occurred: {traceback.format_exc()}")
|
|
pass
|
|
|
|
|
|
# # test on together ai completion call - starcoder
|
|
|
|
|
|
def test_together_ai_completion_call_starcoder_bad_key():
|
|
try:
|
|
api_key = "bad-key"
|
|
start_time = time.time()
|
|
response = completion(
|
|
model="together_ai/bigcode/starcoder",
|
|
messages=messages,
|
|
stream=True,
|
|
api_key=api_key,
|
|
)
|
|
complete_response = ""
|
|
has_finish_reason = False
|
|
for idx, chunk in enumerate(response):
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
has_finish_reason = finished
|
|
if finished:
|
|
break
|
|
complete_response += chunk
|
|
if has_finish_reason is False:
|
|
raise Exception("Finish reason not set for last chunk")
|
|
if complete_response == "":
|
|
raise Exception("Empty response received")
|
|
print(f"complete response: {complete_response}")
|
|
except BadRequestError as e:
|
|
pass
|
|
except Exception:
|
|
print(f"error occurred: {traceback.format_exc()}")
|
|
pass
|
|
|
|
|
|
# test_together_ai_completion_call_starcoder_bad_key()
|
|
#### Test Function calling + streaming ####
|
|
|
|
|
|
def test_completion_openai_with_functions():
|
|
function1 = [
|
|
{
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
}
|
|
]
|
|
try:
|
|
litellm.set_verbose = False
|
|
response = completion(
|
|
model="gpt-3.5-turbo-1106",
|
|
messages=[{"role": "user", "content": "what's the weather in SF"}],
|
|
functions=function1,
|
|
stream=True,
|
|
)
|
|
# Add any assertions here to check the response
|
|
print(response)
|
|
for chunk in response:
|
|
print(chunk)
|
|
if chunk["choices"][0]["finish_reason"] == "stop":
|
|
break
|
|
print(chunk["choices"][0]["finish_reason"])
|
|
print(chunk["choices"][0]["delta"]["content"])
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
# test_completion_openai_with_functions()
|
|
#### Test Async streaming ####
|
|
|
|
|
|
async def completion_call():
|
|
try:
|
|
response = completion(
|
|
model="gpt-3.5-turbo",
|
|
messages=messages,
|
|
stream=True,
|
|
logger_fn=logger_fn,
|
|
max_tokens=10,
|
|
)
|
|
print(f"response: {response}")
|
|
complete_response = ""
|
|
start_time = time.time()
|
|
# Change for loop to async for loop
|
|
idx = 0
|
|
async for chunk in response:
|
|
chunk, finished = streaming_format_tests(idx, chunk)
|
|
if finished:
|
|
break
|
|
complete_response += chunk
|
|
idx += 1
|
|
if complete_response.strip() == "":
|
|
raise Exception("Empty response received")
|
|
print(f"complete response: {complete_response}")
|
|
except Exception:
|
|
print(f"error occurred: {traceback.format_exc()}")
|
|
pass
|
|
|
|
|
|
# asyncio.run(completion_call())
|
|
|
|
#### Test Function Calling + Streaming ####
|
|
|
|
final_openai_function_call_example = {
|
|
"id": "chatcmpl-7zVNA4sXUftpIg6W8WlntCyeBj2JY",
|
|
"object": "chat.completion",
|
|
"created": 1694892960,
|
|
"model": "gpt-3.5-turbo",
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"message": {
|
|
"role": "assistant",
|
|
"content": None,
|
|
"function_call": {
|
|
"name": "get_current_weather",
|
|
"arguments": '{\n "location": "Boston, MA"\n}',
|
|
},
|
|
},
|
|
"finish_reason": "function_call",
|
|
}
|
|
],
|
|
"usage": {"prompt_tokens": 82, "completion_tokens": 18, "total_tokens": 100},
|
|
}
|
|
|
|
function_calling_output_structure = {
|
|
"id": str,
|
|
"object": str,
|
|
"created": int,
|
|
"model": str,
|
|
"choices": [
|
|
{
|
|
"index": int,
|
|
"message": {
|
|
"role": str,
|
|
"content": (type(None), str),
|
|
"function_call": {"name": str, "arguments": str},
|
|
},
|
|
"finish_reason": str,
|
|
}
|
|
],
|
|
"usage": {"prompt_tokens": int, "completion_tokens": int, "total_tokens": int},
|
|
}
|
|
|
|
|
|
def validate_final_structure(item, structure=function_calling_output_structure):
|
|
if isinstance(item, list):
|
|
if not all(validate_final_structure(i, structure[0]) for i in item):
|
|
return Exception(
|
|
"Function calling final output doesn't match expected output format"
|
|
)
|
|
elif isinstance(item, dict):
|
|
if not all(
|
|
k in item and validate_final_structure(item[k], v)
|
|
for k, v in structure.items()
|
|
):
|
|
return Exception(
|
|
"Function calling final output doesn't match expected output format"
|
|
)
|
|
else:
|
|
if not isinstance(item, structure):
|
|
return Exception(
|
|
"Function calling final output doesn't match expected output format"
|
|
)
|
|
return True
|
|
|
|
|
|
first_openai_function_call_example = {
|
|
"id": "chatcmpl-7zVRoE5HjHYsCMaVSNgOjzdhbS3P0",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1694893248,
|
|
"model": "gpt-3.5-turbo",
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"delta": {
|
|
"role": "assistant",
|
|
"content": None,
|
|
"function_call": {"name": "get_current_weather", "arguments": ""},
|
|
},
|
|
"finish_reason": None,
|
|
}
|
|
],
|
|
}
|
|
|
|
|
|
def validate_first_function_call_chunk_structure(item):
|
|
if not (isinstance(item, dict) or isinstance(item, litellm.ModelResponse)):
|
|
raise Exception(f"Incorrect format, type of item: {type(item)}")
|
|
|
|
required_keys = {"id", "object", "created", "model", "choices"}
|
|
for key in required_keys:
|
|
if key not in item:
|
|
raise Exception("Incorrect format")
|
|
|
|
if not isinstance(item["choices"], list) or not item["choices"]:
|
|
raise Exception("Incorrect format")
|
|
|
|
required_keys_in_choices_array = {"index", "delta", "finish_reason"}
|
|
for choice in item["choices"]:
|
|
if not (
|
|
isinstance(choice, dict)
|
|
or isinstance(choice, litellm.utils.StreamingChoices)
|
|
):
|
|
raise Exception(f"Incorrect format, type of choice: {type(choice)}")
|
|
for key in required_keys_in_choices_array:
|
|
if key not in choice:
|
|
raise Exception("Incorrect format")
|
|
|
|
if not (
|
|
isinstance(choice["delta"], dict)
|
|
or isinstance(choice["delta"], litellm.utils.Delta)
|
|
):
|
|
raise Exception(
|
|
f"Incorrect format, type of choice: {type(choice['delta'])}"
|
|
)
|
|
|
|
required_keys_in_delta = {"role", "content", "function_call"}
|
|
for key in required_keys_in_delta:
|
|
if key not in choice["delta"]:
|
|
raise Exception("Incorrect format")
|
|
|
|
if not (
|
|
isinstance(choice["delta"]["function_call"], dict)
|
|
or isinstance(choice["delta"]["function_call"], BaseModel)
|
|
):
|
|
raise Exception(
|
|
f"Incorrect format, type of function call: {type(choice['delta']['function_call'])}"
|
|
)
|
|
|
|
required_keys_in_function_call = {"name", "arguments"}
|
|
for key in required_keys_in_function_call:
|
|
if not hasattr(choice["delta"]["function_call"], key):
|
|
raise Exception(
|
|
f"Incorrect format, expected key={key}; actual keys: {choice['delta']['function_call']}, eval: {hasattr(choice['delta']['function_call'], key)}"
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
second_function_call_chunk_format = {
|
|
"id": "chatcmpl-7zVRoE5HjHYsCMaVSNgOjzdhbS3P0",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1694893248,
|
|
"model": "gpt-3.5-turbo",
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"delta": {"function_call": {"arguments": "{\n"}},
|
|
"finish_reason": None,
|
|
}
|
|
],
|
|
}
|
|
|
|
|
|
def validate_second_function_call_chunk_structure(data):
|
|
if not isinstance(data, dict):
|
|
raise Exception("Incorrect format")
|
|
|
|
required_keys = {"id", "object", "created", "model", "choices"}
|
|
for key in required_keys:
|
|
if key not in data:
|
|
raise Exception("Incorrect format")
|
|
|
|
if not isinstance(data["choices"], list) or not data["choices"]:
|
|
raise Exception("Incorrect format")
|
|
|
|
required_keys_in_choices_array = {"index", "delta", "finish_reason"}
|
|
for choice in data["choices"]:
|
|
if not isinstance(choice, dict):
|
|
raise Exception("Incorrect format")
|
|
for key in required_keys_in_choices_array:
|
|
if key not in choice:
|
|
raise Exception("Incorrect format")
|
|
|
|
if (
|
|
"function_call" not in choice["delta"]
|
|
or "arguments" not in choice["delta"]["function_call"]
|
|
):
|
|
raise Exception("Incorrect format")
|
|
|
|
return True
|
|
|
|
|
|
final_function_call_chunk_example = {
|
|
"id": "chatcmpl-7zVRoE5HjHYsCMaVSNgOjzdhbS3P0",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1694893248,
|
|
"model": "gpt-3.5-turbo",
|
|
"choices": [{"index": 0, "delta": {}, "finish_reason": "function_call"}],
|
|
}
|
|
|
|
|
|
def validate_final_function_call_chunk_structure(data):
|
|
if not (isinstance(data, dict) or isinstance(data, litellm.ModelResponse)):
|
|
raise Exception("Incorrect format")
|
|
|
|
required_keys = {"id", "object", "created", "model", "choices"}
|
|
for key in required_keys:
|
|
if key not in data:
|
|
raise Exception("Incorrect format")
|
|
|
|
if not isinstance(data["choices"], list) or not data["choices"]:
|
|
raise Exception("Incorrect format")
|
|
|
|
required_keys_in_choices_array = {"index", "delta", "finish_reason"}
|
|
for choice in data["choices"]:
|
|
if not (
|
|
isinstance(choice, dict) or isinstance(choice["delta"], litellm.utils.Delta)
|
|
):
|
|
raise Exception("Incorrect format")
|
|
for key in required_keys_in_choices_array:
|
|
if key not in choice:
|
|
raise Exception("Incorrect format")
|
|
|
|
return True
|
|
|
|
|
|
def streaming_and_function_calling_format_tests(idx, chunk):
|
|
extracted_chunk = ""
|
|
finished = False
|
|
print(f"idx: {idx}")
|
|
print(f"chunk: {chunk}")
|
|
decision = False
|
|
if idx == 0: # ensure role assistant is set
|
|
decision = validate_first_function_call_chunk_structure(chunk)
|
|
role = chunk["choices"][0]["delta"]["role"]
|
|
assert role == "assistant"
|
|
elif idx != 0: # second chunk
|
|
try:
|
|
decision = validate_second_function_call_chunk_structure(data=chunk)
|
|
except Exception: # check if it's the last chunk (returns an empty delta {} )
|
|
decision = validate_final_function_call_chunk_structure(data=chunk)
|
|
finished = True
|
|
if "content" in chunk["choices"][0]["delta"]:
|
|
extracted_chunk = chunk["choices"][0]["delta"]["content"]
|
|
if decision == False:
|
|
raise Exception("incorrect format")
|
|
return extracted_chunk, finished
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
# "gpt-3.5-turbo",
|
|
# "anthropic.claude-3-sonnet-20240229-v1:0",
|
|
"claude-haiku-4-5-20251001",
|
|
],
|
|
)
|
|
def test_streaming_and_function_calling(model):
|
|
import json
|
|
|
|
tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
},
|
|
}
|
|
]
|
|
|
|
messages = [{"role": "user", "content": "What is the weather like in Boston?"}]
|
|
try:
|
|
# litellm.set_verbose = True
|
|
response: litellm.CustomStreamWrapper = completion(
|
|
model=model,
|
|
tools=tools,
|
|
messages=messages,
|
|
stream=True,
|
|
tool_choice="required",
|
|
) # type: ignore
|
|
# Add any assertions here to check the response
|
|
json_str = ""
|
|
for idx, chunk in enumerate(response):
|
|
# continue
|
|
# print("\n{}\n".format(chunk))
|
|
if idx == 0:
|
|
assert (
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments is not None
|
|
)
|
|
assert isinstance(
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments, str
|
|
)
|
|
if chunk.choices[0].delta.tool_calls is not None:
|
|
json_str += chunk.choices[0].delta.tool_calls[0].function.arguments
|
|
|
|
print(json.loads(json_str))
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
raise e
|
|
|
|
|
|
# test_azure_streaming_and_function_calling()
|
|
|
|
|
|
def test_success_callback_streaming():
|
|
def success_callback(kwargs, completion_response, start_time, end_time):
|
|
print(
|
|
{
|
|
"success": True,
|
|
"input": kwargs,
|
|
"output": completion_response,
|
|
"start_time": start_time,
|
|
"end_time": end_time,
|
|
}
|
|
)
|
|
|
|
litellm.success_callback = [success_callback]
|
|
|
|
messages = [{"role": "user", "content": "hello"}]
|
|
print("TESTING LITELLM COMPLETION CALL")
|
|
response = litellm.completion(
|
|
model="gpt-3.5-turbo",
|
|
messages=messages,
|
|
stream=True,
|
|
max_tokens=5,
|
|
)
|
|
print(response)
|
|
|
|
for chunk in response:
|
|
print(chunk["choices"][0])
|
|
|
|
|
|
# test_success_callback_streaming()
|
|
|
|
from typing import List, Optional
|
|
|
|
#### STREAMING + FUNCTION CALLING ###
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Function(BaseModel):
|
|
name: str
|
|
arguments: str
|
|
|
|
|
|
class ToolCalls(BaseModel):
|
|
index: int
|
|
id: str
|
|
type: str
|
|
function: Function
|
|
|
|
|
|
class Delta(BaseModel):
|
|
role: str
|
|
content: Optional[str]
|
|
tool_calls: List[ToolCalls]
|
|
|
|
|
|
class Choices(BaseModel):
|
|
index: int
|
|
delta: Delta
|
|
logprobs: Optional[str]
|
|
finish_reason: Optional[str]
|
|
|
|
|
|
class Chunk(BaseModel):
|
|
id: str
|
|
object: str
|
|
created: int
|
|
model: str
|
|
# system_fingerprint: str
|
|
choices: List[Choices]
|
|
|
|
|
|
def validate_first_streaming_function_calling_chunk(chunk: ModelResponse):
|
|
chunk_instance = Chunk(**chunk.model_dump())
|
|
|
|
|
|
### Chunk 1
|
|
|
|
|
|
# {
|
|
# "id": "chatcmpl-8vdVjtzxc0JqGjq93NxC79dMp6Qcs",
|
|
# "object": "chat.completion.chunk",
|
|
# "created": 1708747267,
|
|
# "model": "gpt-3.5-turbo-0125",
|
|
# "system_fingerprint": "fp_86156a94a0",
|
|
# "choices": [
|
|
# {
|
|
# "index": 0,
|
|
# "delta": {
|
|
# "role": "assistant",
|
|
# "content": null,
|
|
# "tool_calls": [
|
|
# {
|
|
# "index": 0,
|
|
# "id": "call_oN10vaaC9iA8GLFRIFwjCsN7",
|
|
# "type": "function",
|
|
# "function": {
|
|
# "name": "get_current_weather",
|
|
# "arguments": ""
|
|
# }
|
|
# }
|
|
# ]
|
|
# },
|
|
# "logprobs": null,
|
|
# "finish_reason": null
|
|
# }
|
|
# ]
|
|
# }
|
|
class Function2(BaseModel):
|
|
arguments: str
|
|
|
|
|
|
class ToolCalls2(BaseModel):
|
|
index: int
|
|
function: Optional[Function2]
|
|
|
|
|
|
class Delta2(BaseModel):
|
|
tool_calls: List[ToolCalls2]
|
|
|
|
|
|
class Choices2(BaseModel):
|
|
index: int
|
|
delta: Delta2
|
|
logprobs: Optional[str]
|
|
finish_reason: Optional[str]
|
|
|
|
|
|
class Chunk2(BaseModel):
|
|
id: str
|
|
object: str
|
|
created: int
|
|
model: str
|
|
system_fingerprint: Optional[str]
|
|
choices: List[Choices2]
|
|
|
|
|
|
## Chunk 2
|
|
|
|
# {
|
|
# "id": "chatcmpl-8vdVjtzxc0JqGjq93NxC79dMp6Qcs",
|
|
# "object": "chat.completion.chunk",
|
|
# "created": 1708747267,
|
|
# "model": "gpt-3.5-turbo-0125",
|
|
# "system_fingerprint": "fp_86156a94a0",
|
|
# "choices": [
|
|
# {
|
|
# "index": 0,
|
|
# "delta": {
|
|
# "tool_calls": [
|
|
# {
|
|
# "index": 0,
|
|
# "function": {
|
|
# "arguments": "{\""
|
|
# }
|
|
# }
|
|
# ]
|
|
# },
|
|
# "logprobs": null,
|
|
# "finish_reason": null
|
|
# }
|
|
# ]
|
|
# }
|
|
|
|
|
|
def validate_second_streaming_function_calling_chunk(chunk: ModelResponse):
|
|
chunk_instance = Chunk2(**chunk.model_dump())
|
|
|
|
|
|
class Delta3(BaseModel):
|
|
content: Optional[str] = None
|
|
role: Optional[str] = None
|
|
function_call: Optional[dict] = None
|
|
tool_calls: Optional[List] = None
|
|
|
|
|
|
class Choices3(BaseModel):
|
|
index: int
|
|
delta: Delta3
|
|
logprobs: Optional[str]
|
|
finish_reason: str
|
|
|
|
|
|
class Chunk3(BaseModel):
|
|
id: str
|
|
object: str
|
|
created: int
|
|
model: str
|
|
# system_fingerprint: str
|
|
choices: List[Choices3]
|
|
|
|
|
|
def validate_final_streaming_function_calling_chunk(chunk: ModelResponse):
|
|
chunk_instance = Chunk3(**chunk.model_dump())
|
|
|
|
|
|
def test_azure_streaming_and_function_calling():
|
|
tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
},
|
|
}
|
|
]
|
|
messages = [{"role": "user", "content": "What is the weather like in Boston?"}]
|
|
try:
|
|
response = completion(
|
|
model="azure/gpt-4.1-mini",
|
|
tools=tools,
|
|
tool_choice="auto",
|
|
messages=messages,
|
|
stream=True,
|
|
api_base=os.getenv("AZURE_AI_API_BASE"),
|
|
api_key=os.getenv("AZURE_AI_API_KEY"),
|
|
api_version="2024-02-15-preview",
|
|
)
|
|
# Add any assertions here to check the response
|
|
for idx, chunk in enumerate(response):
|
|
print(f"chunk: {chunk}")
|
|
if idx == 0:
|
|
assert (
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments is not None
|
|
)
|
|
assert isinstance(
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments, str
|
|
)
|
|
validate_first_streaming_function_calling_chunk(chunk=chunk)
|
|
elif idx == 1:
|
|
validate_second_streaming_function_calling_chunk(chunk=chunk)
|
|
elif chunk.choices[0].finish_reason is not None: # last chunk
|
|
validate_final_streaming_function_calling_chunk(chunk=chunk)
|
|
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
raise e
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_azure_astreaming_and_function_calling():
|
|
from litellm._uuid import uuid
|
|
|
|
tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
},
|
|
}
|
|
]
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": f"What is the weather like in Boston? {uuid.uuid4()}",
|
|
}
|
|
]
|
|
from litellm.caching.caching import Cache
|
|
|
|
litellm.cache = Cache(
|
|
type="redis",
|
|
host=os.environ["REDIS_HOST"],
|
|
port=os.environ["REDIS_PORT"],
|
|
password=os.environ["REDIS_PASSWORD"],
|
|
)
|
|
try:
|
|
litellm.set_verbose = True
|
|
response = await litellm.acompletion(
|
|
model="azure/gpt-4.1-mini",
|
|
tools=tools,
|
|
tool_choice="auto",
|
|
messages=messages,
|
|
stream=True,
|
|
api_base=os.getenv("AZURE_AI_API_BASE"),
|
|
api_key=os.getenv("AZURE_AI_API_KEY"),
|
|
api_version="2024-02-15-preview",
|
|
caching=True,
|
|
)
|
|
# Add any assertions here to check the response
|
|
idx = 0
|
|
async for chunk in response:
|
|
print(f"chunk: {chunk}")
|
|
if idx == 0:
|
|
assert (
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments is not None
|
|
)
|
|
assert isinstance(
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments, str
|
|
)
|
|
validate_first_streaming_function_calling_chunk(chunk=chunk)
|
|
elif idx == 1:
|
|
validate_second_streaming_function_calling_chunk(chunk=chunk)
|
|
elif chunk.choices[0].finish_reason is not None: # last chunk
|
|
validate_final_streaming_function_calling_chunk(chunk=chunk)
|
|
idx += 1
|
|
|
|
## CACHING TEST
|
|
print("\n\nCACHING TESTS\n\n")
|
|
response = await litellm.acompletion(
|
|
model="azure/gpt-4.1-mini",
|
|
tools=tools,
|
|
tool_choice="auto",
|
|
messages=messages,
|
|
stream=True,
|
|
api_base=os.getenv("AZURE_AI_API_BASE"),
|
|
api_key=os.getenv("AZURE_AI_API_KEY"),
|
|
api_version="2024-02-15-preview",
|
|
caching=True,
|
|
)
|
|
# Add any assertions here to check the response
|
|
idx = 0
|
|
async for chunk in response:
|
|
print(f"chunk: {chunk}")
|
|
if idx == 0:
|
|
assert (
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments is not None
|
|
)
|
|
assert isinstance(
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments, str
|
|
)
|
|
validate_first_streaming_function_calling_chunk(chunk=chunk)
|
|
elif idx == 1 and chunk.choices[0].finish_reason is None:
|
|
validate_second_streaming_function_calling_chunk(chunk=chunk)
|
|
elif chunk.choices[0].finish_reason is not None: # last chunk
|
|
validate_final_streaming_function_calling_chunk(chunk=chunk)
|
|
idx += 1
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
raise e
|
|
|
|
|
|
def test_completion_claude_3_function_call_with_streaming():
|
|
tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_current_weather",
|
|
"description": "Get the current weather in a given location",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state, e.g. San Francisco, CA",
|
|
},
|
|
"unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
},
|
|
"required": ["location"],
|
|
},
|
|
},
|
|
}
|
|
]
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": "What's the weather like in Boston today in fahrenheit?",
|
|
}
|
|
]
|
|
try:
|
|
# test without max tokens
|
|
response = completion(
|
|
model="claude-haiku-4-5-20251001",
|
|
messages=messages,
|
|
tools=tools,
|
|
tool_choice="required",
|
|
stream=True,
|
|
)
|
|
idx = 0
|
|
for chunk in response:
|
|
print(f"chunk in response: {chunk}")
|
|
if idx == 0:
|
|
assert (
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments is not None
|
|
)
|
|
assert isinstance(
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments, str
|
|
)
|
|
validate_first_streaming_function_calling_chunk(chunk=chunk)
|
|
elif idx == 1 and chunk.choices[0].finish_reason is None:
|
|
validate_second_streaming_function_calling_chunk(chunk=chunk)
|
|
elif chunk.choices[0].finish_reason is not None: # last chunk
|
|
assert "usage" in chunk._hidden_params
|
|
validate_final_streaming_function_calling_chunk(chunk=chunk)
|
|
idx += 1
|
|
# raise Exception("it worked!")
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
"gemini/gemini-2.5-flash-lite",
|
|
],
|
|
) #
|
|
@pytest.mark.asyncio
|
|
async def test_acompletion_function_call_with_streaming(model):
|
|
litellm.set_verbose = True
|
|
tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "generate_series_of_questions",
|
|
"description": "Generate a series of questions, given a topic.",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"questions": {
|
|
"type": "array",
|
|
"description": "The questions to be generated.",
|
|
"items": {"type": "string"},
|
|
},
|
|
},
|
|
"required": ["questions"],
|
|
},
|
|
},
|
|
},
|
|
]
|
|
SYSTEM_PROMPT = "You are an AI assistant"
|
|
messages = [
|
|
{"role": "system", "content": SYSTEM_PROMPT},
|
|
{
|
|
"role": "user",
|
|
"content": "Generate 3 questions about civil engineering.",
|
|
},
|
|
]
|
|
try:
|
|
# test without max tokens
|
|
response = await acompletion(
|
|
model=model,
|
|
# model="claude-3-5-sonnet-20240620",
|
|
messages=messages,
|
|
stream=True,
|
|
temperature=0.75,
|
|
tools=tools,
|
|
stream_options={"include_usage": True},
|
|
)
|
|
idx = 0
|
|
print(f"response: {response}")
|
|
async for chunk in response:
|
|
print(f"chunk in test: {chunk}")
|
|
if idx == 0:
|
|
assert (
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments is not None
|
|
)
|
|
assert isinstance(
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments, str
|
|
)
|
|
validate_first_streaming_function_calling_chunk(chunk=chunk)
|
|
elif idx == 1 and chunk.choices[0].finish_reason is None:
|
|
validate_second_streaming_function_calling_chunk(chunk=chunk)
|
|
elif chunk.choices[0].finish_reason is not None: # last chunk
|
|
validate_final_streaming_function_calling_chunk(chunk=chunk)
|
|
idx += 1
|
|
# raise Exception("it worked! ")
|
|
except litellm.InternalServerError as e:
|
|
pytest.skip(f"InternalServerError - {str(e)}")
|
|
except litellm.ServiceUnavailableError:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"Error occurred: {e}")
|
|
|
|
|
|
class ModelResponseIterator:
|
|
def __init__(self, model_response):
|
|
self.model_response = model_response
|
|
self.is_done = False
|
|
|
|
# Sync iterator
|
|
def __iter__(self):
|
|
return self
|
|
|
|
def __next__(self):
|
|
if self.is_done:
|
|
raise StopIteration
|
|
self.is_done = True
|
|
return self.model_response
|
|
|
|
# Async iterator
|
|
def __aiter__(self):
|
|
return self
|
|
|
|
async def __anext__(self):
|
|
if self.is_done:
|
|
raise StopAsyncIteration
|
|
self.is_done = True
|
|
return self.model_response
|
|
|
|
|
|
def test_unit_test_custom_stream_wrapper():
|
|
"""
|
|
Test if last streaming chunk ends with '?', if the message repeats itself.
|
|
"""
|
|
litellm.set_verbose = False
|
|
chunk = {
|
|
"id": "chatcmpl-123",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1694268190,
|
|
"model": "gpt-3.5-turbo-0125",
|
|
"system_fingerprint": "fp_44709d6fcb",
|
|
"choices": [
|
|
{"index": 0, "delta": {"content": "How are you?"}, "finish_reason": "stop"}
|
|
],
|
|
}
|
|
chunk = litellm.ModelResponseStream(**chunk)
|
|
|
|
completion_stream = ModelResponseIterator(model_response=chunk)
|
|
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=completion_stream,
|
|
model="gpt-3.5-turbo",
|
|
custom_llm_provider="cached_response",
|
|
logging_obj=litellm.Logging(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
call_type="completion",
|
|
start_time=time.time(),
|
|
litellm_call_id="12345",
|
|
function_id="1245",
|
|
),
|
|
)
|
|
|
|
freq = 0
|
|
for chunk in response:
|
|
if chunk.choices[0].delta.content is not None:
|
|
if "How are you?" in chunk.choices[0].delta.content:
|
|
freq += 1
|
|
assert freq == 1
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"loop_amount",
|
|
[
|
|
litellm.REPEATED_STREAMING_CHUNK_LIMIT + 1,
|
|
litellm.REPEATED_STREAMING_CHUNK_LIMIT - 1,
|
|
],
|
|
)
|
|
@pytest.mark.parametrize(
|
|
"chunk_value, expected_chunk_fail",
|
|
[("How are you?", True), ("{", False), ("", False), (None, False)],
|
|
)
|
|
def test_unit_test_custom_stream_wrapper_repeating_chunk(
|
|
loop_amount, chunk_value, expected_chunk_fail
|
|
):
|
|
"""
|
|
Test if InternalServerError raised if model enters infinite loop
|
|
|
|
Test if request passes if model loop is below accepted limit
|
|
"""
|
|
litellm.set_verbose = False
|
|
chunks = [
|
|
litellm.ModelResponseStream(
|
|
id="chatcmpl-123",
|
|
created=1694268190,
|
|
model="gpt-3.5-turbo-0125",
|
|
system_fingerprint="fp_44709d6fcb",
|
|
choices=[
|
|
{
|
|
"index": 0,
|
|
"delta": {"content": chunk_value},
|
|
"finish_reason": "stop",
|
|
}
|
|
],
|
|
)
|
|
] * loop_amount
|
|
completion_stream = ModelResponseListIterator(model_responses=chunks)
|
|
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=completion_stream,
|
|
model="gpt-3.5-turbo",
|
|
custom_llm_provider="cached_response",
|
|
logging_obj=litellm.Logging(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
call_type="completion",
|
|
start_time=time.time(),
|
|
litellm_call_id="12345",
|
|
function_id="1245",
|
|
),
|
|
)
|
|
|
|
print(f"expected_chunk_fail: {expected_chunk_fail}")
|
|
|
|
if (loop_amount > litellm.REPEATED_STREAMING_CHUNK_LIMIT) and expected_chunk_fail:
|
|
with pytest.raises(
|
|
(litellm.InternalServerError, litellm.exceptions.MidStreamFallbackError)
|
|
):
|
|
for chunk in response:
|
|
continue
|
|
else:
|
|
for chunk in response:
|
|
continue
|
|
|
|
|
|
def test_unit_test_gemini_streaming_content_filter():
|
|
chunks = [
|
|
{
|
|
"text": "##",
|
|
"tool_use": None,
|
|
"is_finished": False,
|
|
"finish_reason": "stop",
|
|
"usage": {"prompt_tokens": 37, "completion_tokens": 1, "total_tokens": 38},
|
|
"index": 0,
|
|
},
|
|
{
|
|
"text": "",
|
|
"is_finished": False,
|
|
"finish_reason": "",
|
|
"usage": None,
|
|
"index": 0,
|
|
"tool_use": None,
|
|
},
|
|
{
|
|
"text": " Downsides of Prompt Hacking in a Customer Portal\n\nWhile prompt engineering can be incredibly",
|
|
"tool_use": None,
|
|
"is_finished": False,
|
|
"finish_reason": "stop",
|
|
"usage": {"prompt_tokens": 37, "completion_tokens": 17, "total_tokens": 54},
|
|
"index": 0,
|
|
},
|
|
{
|
|
"text": "",
|
|
"is_finished": False,
|
|
"finish_reason": "",
|
|
"usage": None,
|
|
"index": 0,
|
|
"tool_use": None,
|
|
},
|
|
{
|
|
"text": "",
|
|
"tool_use": None,
|
|
"is_finished": False,
|
|
"finish_reason": "content_filter",
|
|
"usage": {"prompt_tokens": 37, "completion_tokens": 17, "total_tokens": 54},
|
|
"index": 0,
|
|
},
|
|
{
|
|
"text": "",
|
|
"is_finished": False,
|
|
"finish_reason": "",
|
|
"usage": None,
|
|
"index": 0,
|
|
"tool_use": None,
|
|
},
|
|
]
|
|
|
|
completion_stream = ModelResponseListIterator(model_responses=chunks)
|
|
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=completion_stream,
|
|
model="gemini/gemini-1.5-pro",
|
|
custom_llm_provider="gemini",
|
|
logging_obj=litellm.Logging(
|
|
model="gemini/gemini-1.5-pro",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
call_type="completion",
|
|
start_time=time.time(),
|
|
litellm_call_id="12345",
|
|
function_id="1245",
|
|
),
|
|
)
|
|
|
|
stream_finish_reason: Optional[str] = None
|
|
idx = 0
|
|
for chunk in response:
|
|
print(f"chunk: {chunk}")
|
|
if chunk.choices[0].finish_reason is not None:
|
|
stream_finish_reason = chunk.choices[0].finish_reason
|
|
idx += 1
|
|
print(f"num chunks: {idx}")
|
|
assert stream_finish_reason == "content_filter"
|
|
|
|
|
|
def test_unit_test_custom_stream_wrapper_openai():
|
|
"""
|
|
Test if last streaming chunk ends with '?', if the message repeats itself.
|
|
"""
|
|
litellm.set_verbose = False
|
|
chunk = {
|
|
"id": "chatcmpl-9mWtyDnikZZoB75DyfUzWUxiiE2Pi",
|
|
"choices": [
|
|
litellm.utils.StreamingChoices(
|
|
delta=litellm.utils.Delta(
|
|
content=None, function_call=None, role=None, tool_calls=None
|
|
),
|
|
finish_reason="content_filter",
|
|
index=0,
|
|
logprobs=None,
|
|
)
|
|
],
|
|
"created": 1721353246,
|
|
"model": "gpt-3.5-turbo",
|
|
"object": "chat.completion.chunk",
|
|
"system_fingerprint": None,
|
|
"usage": None,
|
|
}
|
|
chunk = litellm.ModelResponseStream(**chunk)
|
|
|
|
completion_stream = ModelResponseIterator(model_response=chunk)
|
|
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=completion_stream,
|
|
model="gpt-3.5-turbo",
|
|
custom_llm_provider="azure",
|
|
logging_obj=litellm.Logging(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
call_type="completion",
|
|
start_time=time.time(),
|
|
litellm_call_id="12345",
|
|
function_id="1245",
|
|
),
|
|
)
|
|
|
|
stream_finish_reason: Optional[str] = None
|
|
for chunk in response:
|
|
assert chunk.choices[0].delta.content is None
|
|
if chunk.choices[0].finish_reason is not None:
|
|
stream_finish_reason = chunk.choices[0].finish_reason
|
|
assert stream_finish_reason == "content_filter"
|
|
|
|
|
|
def test_aamazing_unit_test_custom_stream_wrapper_n():
|
|
"""
|
|
Test if the translated output maps exactly to the received openai input
|
|
|
|
Relevant issue: https://github.com/BerriAI/litellm/issues/3276
|
|
"""
|
|
chunks = [
|
|
{
|
|
"id": "chatcmpl-9HzZIMCtVq7CbTmdwEZrktiTeoiYe",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1714075272,
|
|
"model": "gpt-4-0613",
|
|
"system_fingerprint": None,
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"delta": {"content": "It"},
|
|
"logprobs": {
|
|
"content": [
|
|
{
|
|
"token": "It",
|
|
"logprob": -1.5952516,
|
|
"bytes": [73, 116],
|
|
"top_logprobs": [
|
|
{
|
|
"token": "Brown",
|
|
"logprob": -0.7358765,
|
|
"bytes": [66, 114, 111, 119, 110],
|
|
}
|
|
],
|
|
}
|
|
]
|
|
},
|
|
"finish_reason": None,
|
|
}
|
|
],
|
|
},
|
|
{
|
|
"id": "chatcmpl-9HzZIMCtVq7CbTmdwEZrktiTeoiYe",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1714075272,
|
|
"model": "gpt-4-0613",
|
|
"system_fingerprint": None,
|
|
"choices": [
|
|
{
|
|
"index": 1,
|
|
"delta": {"content": "Brown"},
|
|
"logprobs": {
|
|
"content": [
|
|
{
|
|
"token": "Brown",
|
|
"logprob": -0.7358765,
|
|
"bytes": [66, 114, 111, 119, 110],
|
|
"top_logprobs": [
|
|
{
|
|
"token": "Brown",
|
|
"logprob": -0.7358765,
|
|
"bytes": [66, 114, 111, 119, 110],
|
|
}
|
|
],
|
|
}
|
|
]
|
|
},
|
|
"finish_reason": None,
|
|
}
|
|
],
|
|
},
|
|
{
|
|
"id": "chatcmpl-9HzZIMCtVq7CbTmdwEZrktiTeoiYe",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1714075272,
|
|
"model": "gpt-4-0613",
|
|
"system_fingerprint": None,
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"delta": {"content": "'s"},
|
|
"logprobs": {
|
|
"content": [
|
|
{
|
|
"token": "'s",
|
|
"logprob": -0.006786893,
|
|
"bytes": [39, 115],
|
|
"top_logprobs": [
|
|
{
|
|
"token": "'s",
|
|
"logprob": -0.006786893,
|
|
"bytes": [39, 115],
|
|
}
|
|
],
|
|
}
|
|
]
|
|
},
|
|
"finish_reason": None,
|
|
}
|
|
],
|
|
},
|
|
{
|
|
"id": "chatcmpl-9HzZIMCtVq7CbTmdwEZrktiTeoiYe",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1714075272,
|
|
"model": "gpt-4-0613",
|
|
"system_fingerprint": None,
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"delta": {"content": " impossible"},
|
|
"logprobs": {
|
|
"content": [
|
|
{
|
|
"token": " impossible",
|
|
"logprob": -0.06528423,
|
|
"bytes": [
|
|
32,
|
|
105,
|
|
109,
|
|
112,
|
|
111,
|
|
115,
|
|
115,
|
|
105,
|
|
98,
|
|
108,
|
|
101,
|
|
],
|
|
"top_logprobs": [
|
|
{
|
|
"token": " impossible",
|
|
"logprob": -0.06528423,
|
|
"bytes": [
|
|
32,
|
|
105,
|
|
109,
|
|
112,
|
|
111,
|
|
115,
|
|
115,
|
|
105,
|
|
98,
|
|
108,
|
|
101,
|
|
],
|
|
}
|
|
],
|
|
}
|
|
]
|
|
},
|
|
"finish_reason": None,
|
|
}
|
|
],
|
|
},
|
|
{
|
|
"id": "chatcmpl-9HzZIMCtVq7CbTmdwEZrktiTeoiYe",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1714075272,
|
|
"model": "gpt-4-0613",
|
|
"system_fingerprint": None,
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"delta": {"content": "—even"},
|
|
"logprobs": {
|
|
"content": [
|
|
{
|
|
"token": "—even",
|
|
"logprob": -9999.0,
|
|
"bytes": [226, 128, 148, 101, 118, 101, 110],
|
|
"top_logprobs": [
|
|
{
|
|
"token": " to",
|
|
"logprob": -0.12302828,
|
|
"bytes": [32, 116, 111],
|
|
}
|
|
],
|
|
}
|
|
]
|
|
},
|
|
"finish_reason": None,
|
|
}
|
|
],
|
|
},
|
|
{
|
|
"id": "chatcmpl-9HzZIMCtVq7CbTmdwEZrktiTeoiYe",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1714075272,
|
|
"model": "gpt-4-0613",
|
|
"system_fingerprint": None,
|
|
"choices": [
|
|
{"index": 0, "delta": {}, "logprobs": None, "finish_reason": "length"}
|
|
],
|
|
},
|
|
{
|
|
"id": "chatcmpl-9HzZIMCtVq7CbTmdwEZrktiTeoiYe",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1714075272,
|
|
"model": "gpt-4-0613",
|
|
"system_fingerprint": None,
|
|
"choices": [
|
|
{"index": 1, "delta": {}, "logprobs": None, "finish_reason": "stop"}
|
|
],
|
|
},
|
|
]
|
|
|
|
litellm.set_verbose = True
|
|
|
|
chunk_list = []
|
|
for chunk in chunks:
|
|
new_chunk = litellm.ModelResponseStream(id=chunk["id"])
|
|
if "choices" in chunk and isinstance(chunk["choices"], list):
|
|
print("INSIDE CHUNK CHOICES!")
|
|
new_choices = []
|
|
for choice in chunk["choices"]:
|
|
if isinstance(choice, litellm.utils.StreamingChoices):
|
|
_new_choice = choice
|
|
elif isinstance(choice, dict):
|
|
_new_choice = litellm.utils.StreamingChoices(**choice)
|
|
new_choices.append(_new_choice)
|
|
new_chunk.choices = new_choices
|
|
chunk_list.append(new_chunk)
|
|
|
|
completion_stream = ModelResponseListIterator(model_responses=chunk_list)
|
|
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=completion_stream,
|
|
model="gpt-4-0613",
|
|
custom_llm_provider="cached_response",
|
|
logging_obj=litellm.Logging(
|
|
model="gpt-4-0613",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
call_type="completion",
|
|
start_time=time.time(),
|
|
litellm_call_id="12345",
|
|
function_id="1245",
|
|
),
|
|
)
|
|
|
|
for idx, chunk in enumerate(response):
|
|
chunk_dict = {}
|
|
try:
|
|
chunk_dict = chunk.model_dump(exclude_none=True)
|
|
except Exception:
|
|
chunk_dict = chunk.dict(exclude_none=True)
|
|
|
|
chunk_dict.pop("created")
|
|
chunks[idx].pop("created")
|
|
if chunks[idx]["system_fingerprint"] is None:
|
|
chunks[idx].pop("system_fingerprint", None)
|
|
if idx == 0:
|
|
for choice in chunk_dict["choices"]:
|
|
if "role" in choice["delta"]:
|
|
choice["delta"].pop("role")
|
|
|
|
for choice in chunks[idx]["choices"]:
|
|
# ignore finish reason None - since our pydantic object is set to exclude_none = true
|
|
if "finish_reason" in choice and choice["finish_reason"] is None:
|
|
choice.pop("finish_reason")
|
|
if "logprobs" in choice and choice["logprobs"] is None:
|
|
choice.pop("logprobs")
|
|
|
|
assert (
|
|
chunk_dict == chunks[idx]
|
|
), f"idx={idx} translated chunk = {chunk_dict} != openai chunk = {chunks[idx]}"
|
|
|
|
|
|
def test_unit_test_custom_stream_wrapper_function_call():
|
|
"""
|
|
Test if model returns a tool call, the finish reason is correctly set to 'tool_calls'
|
|
"""
|
|
from litellm.types.llms.openai import ChatCompletionDeltaChunk
|
|
|
|
litellm.set_verbose = False
|
|
delta: ChatCompletionDeltaChunk = {
|
|
"content": None,
|
|
"role": "assistant",
|
|
"tool_calls": [
|
|
{
|
|
"function": {"arguments": '"}'},
|
|
"type": "function",
|
|
"index": 0,
|
|
}
|
|
],
|
|
}
|
|
chunk = {
|
|
"id": "chatcmpl-123",
|
|
"object": "chat.completion.chunk",
|
|
"created": 1694268190,
|
|
"model": "gpt-3.5-turbo-0125",
|
|
"system_fingerprint": "fp_44709d6fcb",
|
|
"choices": [{"index": 0, "delta": delta, "finish_reason": "stop"}],
|
|
}
|
|
chunk = litellm.ModelResponseStream(**chunk)
|
|
|
|
completion_stream = ModelResponseIterator(model_response=chunk)
|
|
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=completion_stream,
|
|
model="gpt-3.5-turbo",
|
|
custom_llm_provider="cached_response",
|
|
logging_obj=litellm.litellm_core_utils.litellm_logging.Logging(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
call_type="completion",
|
|
start_time=time.time(),
|
|
litellm_call_id="12345",
|
|
function_id="1245",
|
|
),
|
|
)
|
|
|
|
finish_reason: Optional[str] = None
|
|
for chunk in response:
|
|
if chunk.choices[0].finish_reason is not None:
|
|
finish_reason = chunk.choices[0].finish_reason
|
|
assert finish_reason == "tool_calls"
|
|
|
|
## UNIT TEST RECREATING MODEL RESPONSE
|
|
from litellm.types.utils import (
|
|
ChatCompletionDeltaToolCall,
|
|
Delta,
|
|
Function,
|
|
StreamingChoices,
|
|
Usage,
|
|
)
|
|
|
|
initial_model_response = litellm.ModelResponse(
|
|
id="chatcmpl-842826b6-75a1-4ed4-8a68-7655e60654b3",
|
|
choices=[
|
|
StreamingChoices(
|
|
finish_reason=None,
|
|
index=0,
|
|
delta=Delta(
|
|
content="",
|
|
role="assistant",
|
|
function_call=None,
|
|
tool_calls=[
|
|
ChatCompletionDeltaToolCall(
|
|
id="7ee88721-bfee-4584-8662-944a23d4c7a5",
|
|
function=Function(
|
|
arguments='{"questions": ["What are the main challenges facing civil engineers today?", "How has technology impacted the field of civil engineering?", "What are some of the most innovative projects in civil engineering in recent years?"]}',
|
|
name="generate_series_of_questions",
|
|
),
|
|
type="function",
|
|
index=0,
|
|
)
|
|
],
|
|
),
|
|
logprobs=None,
|
|
)
|
|
],
|
|
created=1720755257,
|
|
model="gemini-2.5-flash-lite",
|
|
object="chat.completion.chunk",
|
|
system_fingerprint=None,
|
|
usage=Usage(prompt_tokens=67, completion_tokens=55, total_tokens=122),
|
|
stream=True,
|
|
)
|
|
|
|
obj_dict = initial_model_response.dict()
|
|
|
|
if "usage" in obj_dict:
|
|
del obj_dict["usage"]
|
|
|
|
new_model = response.model_response_creator(chunk=obj_dict)
|
|
|
|
print("\n\n{}\n\n".format(new_model))
|
|
|
|
assert len(new_model.choices[0].delta.tool_calls) > 0
|
|
|
|
|
|
def test_unit_test_perplexity_citations_chunk():
|
|
"""
|
|
Test if model returns a tool call, the finish reason is correctly set to 'tool_calls'
|
|
"""
|
|
from litellm.types.llms.openai import ChatCompletionDeltaChunk
|
|
|
|
litellm.set_verbose = False
|
|
delta: ChatCompletionDeltaChunk = {
|
|
"content": "B",
|
|
"role": "assistant",
|
|
}
|
|
chunk = {
|
|
"id": "xxx",
|
|
"model": "llama-3.1-sonar-small-128k-online",
|
|
"created": 1725494279,
|
|
"usage": {"prompt_tokens": 15, "completion_tokens": 1, "total_tokens": 16},
|
|
"citations": [
|
|
"https://x.com/bizzabo?lang=ur",
|
|
"https://apps.apple.com/my/app/bizzabo/id408705047",
|
|
"https://www.bizzabo.com/blog/maximize-event-data-strategies-for-success",
|
|
],
|
|
"object": "chat.completion",
|
|
"choices": [
|
|
{
|
|
"index": 0,
|
|
"finish_reason": None,
|
|
"message": {"role": "assistant", "content": "B"},
|
|
"delta": delta,
|
|
}
|
|
],
|
|
}
|
|
chunk = litellm.ModelResponseStream(**chunk)
|
|
|
|
completion_stream = ModelResponseIterator(model_response=chunk)
|
|
|
|
response = litellm.CustomStreamWrapper(
|
|
completion_stream=completion_stream,
|
|
model="gpt-3.5-turbo",
|
|
custom_llm_provider="cached_response",
|
|
logging_obj=litellm.litellm_core_utils.litellm_logging.Logging(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
call_type="completion",
|
|
start_time=time.time(),
|
|
litellm_call_id="12345",
|
|
function_id="1245",
|
|
),
|
|
)
|
|
|
|
finish_reason: Optional[str] = None
|
|
for response_chunk in response:
|
|
if response_chunk.choices[0].delta.content is not None:
|
|
print(
|
|
f"response_chunk.choices[0].delta.content: {response_chunk.choices[0].delta.content}"
|
|
)
|
|
assert "citations" in response_chunk
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
"gpt-3.5-turbo",
|
|
"claude-sonnet-4-5-20250929",
|
|
"anthropic.claude-3-sonnet-20240229-v1:0",
|
|
# "vertex_ai/claude-3-5-sonnet@20240620",
|
|
],
|
|
)
|
|
@pytest.mark.flaky(retries=3, delay=1)
|
|
def test_aastreaming_tool_calls_valid_json_str(model):
|
|
if "vertex_ai" in model:
|
|
from test_amazing_vertex_completion import (
|
|
load_vertex_ai_credentials,
|
|
)
|
|
|
|
load_vertex_ai_credentials()
|
|
vertex_location = "us-east5"
|
|
else:
|
|
vertex_location = None
|
|
litellm.set_verbose = False
|
|
messages = [
|
|
{"role": "user", "content": "Hit the snooze button."},
|
|
]
|
|
|
|
tools = [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "snooze",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {},
|
|
"required": [],
|
|
},
|
|
},
|
|
}
|
|
]
|
|
|
|
stream = litellm.completion(
|
|
model, messages, tools=tools, stream=True, vertex_location=vertex_location
|
|
)
|
|
chunks = [*stream]
|
|
print(f"chunks: {chunks}")
|
|
tool_call_id_arg_map = {}
|
|
curr_tool_call_id = None
|
|
curr_tool_call_str = ""
|
|
for chunk in chunks:
|
|
if chunk.choices[0].delta.tool_calls is not None:
|
|
if chunk.choices[0].delta.tool_calls[0].id is not None:
|
|
# flush prev tool call
|
|
if curr_tool_call_id is not None:
|
|
tool_call_id_arg_map[curr_tool_call_id] = curr_tool_call_str
|
|
curr_tool_call_str = ""
|
|
curr_tool_call_id = chunk.choices[0].delta.tool_calls[0].id
|
|
tool_call_id_arg_map[curr_tool_call_id] = ""
|
|
if chunk.choices[0].delta.tool_calls[0].function.arguments is not None:
|
|
curr_tool_call_str += (
|
|
chunk.choices[0].delta.tool_calls[0].function.arguments
|
|
)
|
|
# flush prev tool call
|
|
if curr_tool_call_id is not None:
|
|
tool_call_id_arg_map[curr_tool_call_id] = curr_tool_call_str
|
|
|
|
for k, v in tool_call_id_arg_map.items():
|
|
print("k={}, v={}".format(k, v))
|
|
json.loads(v) # valid json str
|
|
|
|
|
|
def test_streaming_api_base():
|
|
litellm.set_verbose = False
|
|
stream = litellm.completion(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content": "Hey"}],
|
|
stream=True,
|
|
)
|
|
assert "https://api.openai.com" in stream._hidden_params["api_base"]
|
|
|
|
|
|
def test_mock_response_iterator_tool_use():
|
|
"""
|
|
Relevant Issue: https://github.com/BerriAI/litellm/issues/7364
|
|
"""
|
|
from litellm.llms.bedrock.chat.invoke_handler import MockResponseIterator
|
|
from litellm.types.utils import (
|
|
ChatCompletionMessageToolCall,
|
|
Function,
|
|
Message,
|
|
Usage,
|
|
CompletionTokensDetailsWrapper,
|
|
PromptTokensDetailsWrapper,
|
|
Choices,
|
|
)
|
|
|
|
litellm.set_verbose = False
|
|
response = ModelResponse(
|
|
id="chatcmpl-Ai8KRI5vJPZXQ9SQvEJfTVuVqkyEZ",
|
|
created=1735081811,
|
|
model="o1-2024-12-17",
|
|
object="chat.completion",
|
|
system_fingerprint="fp_e6d02d4a78",
|
|
choices=[
|
|
Choices(
|
|
finish_reason="tool_calls",
|
|
index=0,
|
|
message=Message(
|
|
content=None,
|
|
role="assistant",
|
|
tool_calls=[
|
|
ChatCompletionMessageToolCall(
|
|
function=Function(
|
|
arguments='{"location":"San Francisco, CA","unit":"fahrenheit"}',
|
|
name="get_current_weather",
|
|
),
|
|
id="call_BfRX2S7YCKL0BtxbWMl89ZNk",
|
|
type="function",
|
|
)
|
|
],
|
|
function_call=None,
|
|
),
|
|
)
|
|
],
|
|
usage=Usage(
|
|
completion_tokens=1955,
|
|
prompt_tokens=85,
|
|
total_tokens=2040,
|
|
completion_tokens_details=CompletionTokensDetailsWrapper(
|
|
accepted_prediction_tokens=0,
|
|
audio_tokens=0,
|
|
reasoning_tokens=1920,
|
|
rejected_prediction_tokens=0,
|
|
text_tokens=None,
|
|
),
|
|
prompt_tokens_details=PromptTokensDetailsWrapper(
|
|
audio_tokens=0, cached_tokens=0, text_tokens=None, image_tokens=None
|
|
),
|
|
),
|
|
service_tier=None,
|
|
)
|
|
completion_stream = MockResponseIterator(model_response=response)
|
|
response_chunk = completion_stream._chunk_parser(chunk_data=response)
|
|
|
|
assert response_chunk["tool_use"] is not None
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model",
|
|
[
|
|
# "deepseek/deepseek-reasoner",
|
|
# "anthropic/claude-3-7-sonnet-20250219",
|
|
"openrouter/anthropic/claude-sonnet-4.5",
|
|
],
|
|
)
|
|
def test_reasoning_content_completion(model):
|
|
# litellm.set_verbose = True
|
|
try:
|
|
# litellm._turn_on_debug()
|
|
resp = litellm.completion(
|
|
model=model,
|
|
messages=[{"role": "user", "content": "Tell me a joke."}],
|
|
stream=True,
|
|
# thinking={"type": "enabled", "budget_tokens": 1024},
|
|
reasoning={"effort": "high"},
|
|
drop_params=True,
|
|
)
|
|
|
|
reasoning_content_exists = False
|
|
for chunk in resp:
|
|
print(f"chunk 2: {chunk}")
|
|
if (
|
|
hasattr(chunk.choices[0].delta, "reasoning_content")
|
|
and chunk.choices[0].delta.reasoning_content is not None
|
|
):
|
|
reasoning_content_exists = True
|
|
break
|
|
assert reasoning_content_exists
|
|
except litellm.Timeout:
|
|
pytest.skip("Model is timing out")
|
|
|
|
|
|
def test_is_delta_empty():
|
|
from litellm.litellm_core_utils.streaming_handler import CustomStreamWrapper
|
|
from litellm.types.utils import Delta
|
|
|
|
custom_stream_wrapper = CustomStreamWrapper(
|
|
completion_stream=None,
|
|
model=None,
|
|
logging_obj=MagicMock(),
|
|
custom_llm_provider=None,
|
|
stream_options=None,
|
|
)
|
|
|
|
assert custom_stream_wrapper.is_delta_empty(
|
|
delta=Delta(
|
|
content="",
|
|
role="assistant",
|
|
function_call=None,
|
|
tool_calls=None,
|
|
audio=None,
|
|
)
|
|
)
|
|
|
|
|
|
def test_streaming_with_cost_calculation():
|
|
from litellm.types.utils import Usage
|
|
from typing import Optional
|
|
|
|
litellm.include_cost_in_streaming_usage = True
|
|
|
|
## Test 1: check if usage object can handle 'cost' field
|
|
usage_object = Usage(
|
|
prompt_tokens=100,
|
|
completion_tokens=100,
|
|
total_tokens=200,
|
|
cost=1.0,
|
|
)
|
|
assert usage_object.cost is not None
|
|
|
|
print(f"usage_object: {usage_object}")
|
|
|
|
## Test 2: check if usage object has 'cost' field when streaming
|
|
|
|
response = litellm.completion(
|
|
model="gpt-4o-mini",
|
|
messages=[{"role": "user", "content": "What is the capital of France?"}],
|
|
stream=True,
|
|
stream_options={"include_usage": True},
|
|
)
|
|
|
|
usage_object: Optional[Usage] = None
|
|
for chunk in response:
|
|
_usage_obj = getattr(chunk, "usage", None)
|
|
if _usage_obj is not None:
|
|
usage_object = _usage_obj
|
|
break
|
|
|
|
assert usage_object is not None
|
|
assert usage_object.total_tokens is not None
|
|
assert usage_object.total_tokens > 0
|
|
assert usage_object.prompt_tokens is not None
|
|
assert usage_object.prompt_tokens > 0
|
|
assert usage_object.cost is not None
|
|
assert usage_object.cost > 0
|
|
|
|
|
|
def test_streaming_finish_reason():
|
|
litellm.set_verbose = False
|
|
|
|
openai_finish_reason_idx: Optional[int] = None
|
|
openai_last_chunk_idx: Optional[int] = None
|
|
anthropic_finish_reason_idx: Optional[int] = None
|
|
anthropic_last_chunk_idx: Optional[int] = None
|
|
|
|
## OpenAI
|
|
response = litellm.completion(
|
|
model="gpt-4o-mini",
|
|
messages=[{"role": "user", "content": "What is the capital of France?"}],
|
|
stream=True,
|
|
stream_options={"include_usage": True},
|
|
)
|
|
for idx, chunk in enumerate(response):
|
|
print(f"OPENAI CHUNK: {chunk}")
|
|
if chunk.choices[0].finish_reason is not None:
|
|
openai_finish_reason_idx = idx
|
|
openai_last_chunk_idx = idx
|
|
|
|
assert openai_finish_reason_idx is not None
|
|
assert openai_finish_reason_idx > 0
|
|
|
|
## Anthropic
|
|
response = litellm.completion(
|
|
model="anthropic/claude-sonnet-4-5-20250929",
|
|
messages=[{"role": "user", "content": "What is the capital of France?"}],
|
|
stream=True,
|
|
stream_options={"include_usage": True},
|
|
)
|
|
for idx, chunk in enumerate(response):
|
|
print(f"ANTHROPIC CHUNK: {chunk}")
|
|
if chunk.choices[0].finish_reason is not None:
|
|
anthropic_finish_reason_idx = idx
|
|
anthropic_last_chunk_idx = idx
|
|
|
|
assert anthropic_finish_reason_idx is not None
|
|
assert anthropic_finish_reason_idx > 0
|
|
|
|
relative_anthropic_idx = anthropic_finish_reason_idx - anthropic_last_chunk_idx
|
|
relative_openai_idx = openai_finish_reason_idx - openai_last_chunk_idx
|
|
assert relative_anthropic_idx == relative_openai_idx
|