litellm-proxy-extras 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
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.
- litellm_proxy_extras/migrations/20250526154401_allow_null_entity_id/migration.sql +9 -0
- litellm_proxy_extras/schema.prisma +3 -3
- {litellm_proxy_extras-0.2.0.dist-info → litellm_proxy_extras-0.2.1.dist-info}/METADATA +1 -1
- {litellm_proxy_extras-0.2.0.dist-info → litellm_proxy_extras-0.2.1.dist-info}/RECORD +6 -5
- {litellm_proxy_extras-0.2.0.dist-info → litellm_proxy_extras-0.2.1.dist-info}/LICENSE +0 -0
- {litellm_proxy_extras-0.2.0.dist-info → litellm_proxy_extras-0.2.1.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
-- AlterTable
|
|
2
|
+
ALTER TABLE "LiteLLM_DailyTagSpend" ALTER COLUMN "tag" DROP NOT NULL;
|
|
3
|
+
|
|
4
|
+
-- AlterTable
|
|
5
|
+
ALTER TABLE "LiteLLM_DailyTeamSpend" ALTER COLUMN "team_id" DROP NOT NULL;
|
|
6
|
+
|
|
7
|
+
-- AlterTable
|
|
8
|
+
ALTER TABLE "LiteLLM_DailyUserSpend" ALTER COLUMN "user_id" DROP NOT NULL;
|
|
9
|
+
|
|
@@ -356,7 +356,7 @@ model LiteLLM_AuditLog {
|
|
|
356
356
|
// Track daily user spend metrics per model and key
|
|
357
357
|
model LiteLLM_DailyUserSpend {
|
|
358
358
|
id String @id @default(uuid())
|
|
359
|
-
user_id String
|
|
359
|
+
user_id String?
|
|
360
360
|
date String
|
|
361
361
|
api_key String
|
|
362
362
|
model String
|
|
@@ -383,7 +383,7 @@ model LiteLLM_DailyUserSpend {
|
|
|
383
383
|
// Track daily team spend metrics per model and key
|
|
384
384
|
model LiteLLM_DailyTeamSpend {
|
|
385
385
|
id String @id @default(uuid())
|
|
386
|
-
team_id String
|
|
386
|
+
team_id String?
|
|
387
387
|
date String
|
|
388
388
|
api_key String
|
|
389
389
|
model String
|
|
@@ -410,7 +410,7 @@ model LiteLLM_DailyTeamSpend {
|
|
|
410
410
|
// Track daily team spend metrics per model and key
|
|
411
411
|
model LiteLLM_DailyTagSpend {
|
|
412
412
|
id String @id @default(uuid())
|
|
413
|
-
tag String
|
|
413
|
+
tag String?
|
|
414
414
|
date String
|
|
415
415
|
api_key String
|
|
416
416
|
model String
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: litellm-proxy-extras
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
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.*
|
|
@@ -21,10 +21,11 @@ litellm_proxy_extras/migrations/20250509141545_use_big_int_for_daily_spend_table
|
|
|
21
21
|
litellm_proxy_extras/migrations/20250510142544_add_session_id_index_spend_logs/migration.sql,sha256=M_y4xLnlGApiUIovLv0xA7lL5gJBZWrcFe7b5MSUOik,102
|
|
22
22
|
litellm_proxy_extras/migrations/20250514142245_add_guardrails_table/migration.sql,sha256=mxBhXoedxkabrkn7YPiKn-OVmoXh6RsSEXY9a0-FkQk,506
|
|
23
23
|
litellm_proxy_extras/migrations/20250522223020_managed_object_table/migration.sql,sha256=SbchBsESJa8M5O4R1iqvfgssX5StSrL85Umd2Drns_Y,1185
|
|
24
|
+
litellm_proxy_extras/migrations/20250526154401_allow_null_entity_id/migration.sql,sha256=O9C3_XMaHS5Dqu_DRtym89bhspAieSQiQpxK1MTQZgQ,265
|
|
24
25
|
litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
|
|
25
|
-
litellm_proxy_extras/schema.prisma,sha256
|
|
26
|
+
litellm_proxy_extras/schema.prisma,sha256=-QdRiBCSWuHw1DVg3c379F1LX9SuZL7rnaw9KG8sNhw,19534
|
|
26
27
|
litellm_proxy_extras/utils.py,sha256=QImDkrfX_NGCp0tJ4T9IZpmXyzVZqey4jnVVEO0Hcrs,15050
|
|
27
|
-
litellm_proxy_extras-0.2.
|
|
28
|
-
litellm_proxy_extras-0.2.
|
|
29
|
-
litellm_proxy_extras-0.2.
|
|
30
|
-
litellm_proxy_extras-0.2.
|
|
28
|
+
litellm_proxy_extras-0.2.1.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
|
|
29
|
+
litellm_proxy_extras-0.2.1.dist-info/METADATA,sha256=RU25WM1o-9emQtXPLTOm4VlInKrosWhm3TuKkK05vnQ,1266
|
|
30
|
+
litellm_proxy_extras-0.2.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
31
|
+
litellm_proxy_extras-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|