litellm-proxy-extras 0.2.4__py3-none-any.whl → 0.2.5__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.

@@ -0,0 +1,28 @@
1
+ -- CreateTable
2
+ CREATE TABLE "LiteLLM_HealthCheckTable" (
3
+ "health_check_id" TEXT NOT NULL,
4
+ "model_name" TEXT NOT NULL,
5
+ "model_id" TEXT,
6
+ "status" TEXT NOT NULL,
7
+ "healthy_count" INTEGER NOT NULL DEFAULT 0,
8
+ "unhealthy_count" INTEGER NOT NULL DEFAULT 0,
9
+ "error_message" TEXT,
10
+ "response_time_ms" DOUBLE PRECISION,
11
+ "details" JSONB,
12
+ "checked_by" TEXT,
13
+ "checked_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
14
+ "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
15
+ "updated_at" TIMESTAMP(3) NOT NULL,
16
+
17
+ CONSTRAINT "LiteLLM_HealthCheckTable_pkey" PRIMARY KEY ("health_check_id")
18
+ );
19
+
20
+ -- CreateIndex
21
+ CREATE INDEX "LiteLLM_HealthCheckTable_model_name_idx" ON "LiteLLM_HealthCheckTable"("model_name");
22
+
23
+ -- CreateIndex
24
+ CREATE INDEX "LiteLLM_HealthCheckTable_checked_at_idx" ON "LiteLLM_HealthCheckTable"("checked_at");
25
+
26
+ -- CreateIndex
27
+ CREATE INDEX "LiteLLM_HealthCheckTable_status_idx" ON "LiteLLM_HealthCheckTable"("status");
28
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: litellm-proxy-extras
3
- Version: 0.2.4
3
+ Version: 0.2.5
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.*
@@ -24,10 +24,11 @@ litellm_proxy_extras/migrations/20250522223020_managed_object_table/migration.sq
24
24
  litellm_proxy_extras/migrations/20250526154401_allow_null_entity_id/migration.sql,sha256=O9C3_XMaHS5Dqu_DRtym89bhspAieSQiQpxK1MTQZgQ,265
25
25
  litellm_proxy_extras/migrations/20250528185438_add_vector_stores_to_object_permissions/migration.sql,sha256=CMoueiGIy2-_7Ik7ktzGCRPfhBH43Y7nJkAvfxcYnI0,122
26
26
  litellm_proxy_extras/migrations/20250603210143_cascade_budget_changes/migration.sql,sha256=LMUCGnK6z6Bh_mKikp5_0Xs_EnsoPMb-dTY-sJBnXVg,332
27
+ litellm_proxy_extras/migrations/20250618225828_add_health_check_table/migration.sql,sha256=FpLvgnxHKp3Jb-USx-EWOGeVCXDpSznGBloqlWAm9bg,980
27
28
  litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
28
29
  litellm_proxy_extras/schema.prisma,sha256=WTTSbxUIE5ZG12WKh6wodpuc8u7P3ethIhFLsrDO-lA,20054
29
30
  litellm_proxy_extras/utils.py,sha256=QImDkrfX_NGCp0tJ4T9IZpmXyzVZqey4jnVVEO0Hcrs,15050
30
- litellm_proxy_extras-0.2.4.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
31
- litellm_proxy_extras-0.2.4.dist-info/METADATA,sha256=hzAaMeEQxcqWSdmd02nvnq17FxqlsAXcT0hLGzelAbI,1266
32
- litellm_proxy_extras-0.2.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- litellm_proxy_extras-0.2.4.dist-info/RECORD,,
31
+ litellm_proxy_extras-0.2.5.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
32
+ litellm_proxy_extras-0.2.5.dist-info/METADATA,sha256=Mvu_t_YfK3xhTwLixStEqvSd1JyjHTFDqFKm0EVmKdU,1266
33
+ litellm_proxy_extras-0.2.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
34
+ litellm_proxy_extras-0.2.5.dist-info/RECORD,,