litellm-proxy-extras 0.2.30__py3-none-any.whl → 0.2.31__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,20 @@
1
+ -- CreateTable
2
+ CREATE TABLE "LiteLLM_SSOConfig" (
3
+ "id" TEXT NOT NULL DEFAULT 'sso_config',
4
+ "sso_settings" JSONB NOT NULL,
5
+ "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
6
+ "updated_at" TIMESTAMP(3) NOT NULL,
7
+
8
+ CONSTRAINT "LiteLLM_SSOConfig_pkey" PRIMARY KEY ("id")
9
+ );
10
+
11
+ -- CreateTable
12
+ CREATE TABLE "LiteLLM_CacheConfig" (
13
+ "id" TEXT NOT NULL DEFAULT 'cache_config',
14
+ "cache_settings" JSONB NOT NULL,
15
+ "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
16
+ "updated_at" TIMESTAMP(3) NOT NULL,
17
+
18
+ CONSTRAINT "LiteLLM_CacheConfig_pkey" PRIMARY KEY ("id")
19
+ );
20
+
@@ -588,4 +588,12 @@ model LiteLLM_SSOConfig {
588
588
  sso_settings Json
589
589
  created_at DateTime @default(now())
590
590
  updated_at DateTime @updatedAt
591
+ }
592
+
593
+ // Cache configuration table
594
+ model LiteLLM_CacheConfig {
595
+ id String @id @default("cache_config")
596
+ cache_settings Json
597
+ created_at DateTime @default(now())
598
+ updated_at DateTime @updatedAt
591
599
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: litellm-proxy-extras
3
- Version: 0.2.30
3
+ Version: 0.2.31
4
4
  Summary: Additional files for the LiteLLM Proxy. Reduces the size of the main litellm package.
5
5
  License-File: LICENSE
6
6
  Author: BerriAI
@@ -41,11 +41,11 @@ litellm_proxy_extras/migrations/20251003190954_extra_headers_to_mcp_table/migrat
41
41
  litellm_proxy_extras/migrations/20251006143948_add_mcp_tool_permissions/migration.sql,sha256=RFISpCSAb9YawwQHBdkap9RBn-NrBcmhflOTyUJuljk,104
42
42
  litellm_proxy_extras/migrations/20251011084309_add_tag_table/migration.sql,sha256=z1fiUODOMNByeSMzIBgs3Ee0DuDBVwJBJEZQV8eNXVk,653
43
43
  litellm_proxy_extras/migrations/20251023141814_add_search_tool_table/migration.sql,sha256=QxY8HNjo14DQWFRtlpBtgxaUnI4BeRD6PNiAWbT6Mf8,522
44
- litellm_proxy_extras/migrations/20251030145130_add_sso_table/migration.sql,sha256=g-i1Kc3kEG3k5rRbbDQlW8zJHGwrtc69N2H0QsJtU9c,300
44
+ litellm_proxy_extras/migrations/20251031181430_add_cache_config_table/migration.sql,sha256=Aby9tvl07fvWgqwGpkBh_m0HbAwrCAPWOPIEjND6iGg,608
45
45
  litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
46
- litellm_proxy_extras/schema.prisma,sha256=q4Ch_CbkJpoCc9YNtAhGzYIb52FxOiJPO3BKYyp6Fkw,22704
46
+ litellm_proxy_extras/schema.prisma,sha256=ANWxbSA-CpEMJcji6VqU26vDegz7ReqeWCXhsAJsFGY,22898
47
47
  litellm_proxy_extras/utils.py,sha256=2g3sHuOMy_9sjze2Kw42lBXcS6ustYBygd4vaiJ6Kkk,15679
48
- litellm_proxy_extras-0.2.30.dist-info/METADATA,sha256=WRE7408oecK5ruqUxtg5KV0BqFrY7cHmaEpZNVba7G4,1391
49
- litellm_proxy_extras-0.2.30.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
50
- litellm_proxy_extras-0.2.30.dist-info/licenses/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
51
- litellm_proxy_extras-0.2.30.dist-info/RECORD,,
48
+ litellm_proxy_extras-0.2.31.dist-info/METADATA,sha256=aI3MDE_ZLdpaq6Ves85b94V09duu80HOfHmZyZ8_MDk,1391
49
+ litellm_proxy_extras-0.2.31.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
50
+ litellm_proxy_extras-0.2.31.dist-info/licenses/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
51
+ litellm_proxy_extras-0.2.31.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- -- CreateTable
2
- CREATE TABLE "LiteLLM_SSOConfig" (
3
- "id" TEXT NOT NULL DEFAULT 'sso_config',
4
- "sso_settings" JSONB NOT NULL,
5
- "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
6
- "updated_at" TIMESTAMP(3) NOT NULL,
7
-
8
- CONSTRAINT "LiteLLM_SSOConfig_pkey" PRIMARY KEY ("id")
9
- );
10
-