litellm-proxy-extras 0.1.8__tar.gz → 0.1.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of litellm-proxy-extras might be problematic. Click here for more details.

Files changed (18) hide show
  1. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/PKG-INFO +3 -2
  2. litellm_proxy_extras-0.1.9/litellm_proxy_extras/migrations/20250415151647_add_cache_read_write_tokens_daily_spend_transactions/migration.sql +4 -0
  3. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/schema.prisma +2 -0
  4. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/pyproject.toml +2 -2
  5. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/LICENSE +0 -0
  6. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/README.md +0 -0
  7. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/__init__.py +0 -0
  8. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/_logging.py +0 -0
  9. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/20250326162113_baseline/migration.sql +0 -0
  10. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/20250326171002_add_daily_user_table/migration.sql +0 -0
  11. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/20250327180120_add_api_requests_to_daily_user_table/migration.sql +0 -0
  12. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/20250329084805_new_cron_job_table/migration.sql +0 -0
  13. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/20250331215456_track_success_and_failed_requests_daily_agg_table/migration.sql +0 -0
  14. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/20250411215431_add_managed_file_table/migration.sql +0 -0
  15. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/20250412081753_team_member_permissions/migration.sql +0 -0
  16. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/20250415191926_add_daily_team_table/migration.sql +0 -0
  17. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/migrations/migration_lock.toml +0 -0
  18. {litellm_proxy_extras-0.1.8 → litellm_proxy_extras-0.1.9}/litellm_proxy_extras/utils.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: litellm-proxy-extras
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Additional files for the LiteLLM Proxy. Reduces the size of the main litellm package.
5
5
  Author: BerriAI
6
6
  Requires-Python: >=3.8, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*
@@ -9,6 +9,7 @@ Classifier: Programming Language :: Python :: 3.9
9
9
  Classifier: Programming Language :: Python :: 3.10
10
10
  Classifier: Programming Language :: Python :: 3.11
11
11
  Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
12
13
  Project-URL: Documentation, https://docs.litellm.ai
13
14
  Project-URL: Homepage, https://litellm.ai
14
15
  Project-URL: Repository, https://github.com/BerriAI/litellm
@@ -0,0 +1,4 @@
1
+ -- AlterTable
2
+ ALTER TABLE "LiteLLM_DailyUserSpend" ADD COLUMN "cache_creation_input_tokens" INTEGER NOT NULL DEFAULT 0,
3
+ ADD COLUMN "cache_read_input_tokens" INTEGER NOT NULL DEFAULT 0;
4
+
@@ -326,6 +326,8 @@ model LiteLLM_DailyUserSpend {
326
326
  custom_llm_provider String?
327
327
  prompt_tokens Int @default(0)
328
328
  completion_tokens Int @default(0)
329
+ cache_read_input_tokens Int @default(0)
330
+ cache_creation_input_tokens Int @default(0)
329
331
  spend Float @default(0.0)
330
332
  api_requests Int @default(0)
331
333
  successful_requests Int @default(0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "litellm-proxy-extras"
3
- version = "0.1.8"
3
+ version = "0.1.9"
4
4
  description = "Additional files for the LiteLLM Proxy. Reduces the size of the main litellm package."
5
5
  authors = ["BerriAI"]
6
6
  readme = "README.md"
@@ -22,7 +22,7 @@ requires = ["poetry-core"]
22
22
  build-backend = "poetry.core.masonry.api"
23
23
 
24
24
  [tool.commitizen]
25
- version = "0.1.8"
25
+ version = "0.1.9"
26
26
  version_files = [
27
27
  "pyproject.toml:version",
28
28
  "../requirements.txt:litellm-proxy-extras==",