litellm-proxy-extras 0.2.29__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.
- litellm_proxy_extras/migrations/20251031181430_add_cache_config_table/migration.sql +20 -0
- litellm_proxy_extras/schema.prisma +16 -0
- {litellm_proxy_extras-0.2.29.dist-info → litellm_proxy_extras-0.2.31.dist-info}/METADATA +1 -1
- {litellm_proxy_extras-0.2.29.dist-info → litellm_proxy_extras-0.2.31.dist-info}/RECORD +6 -5
- {litellm_proxy_extras-0.2.29.dist-info → litellm_proxy_extras-0.2.31.dist-info}/WHEEL +0 -0
- {litellm_proxy_extras-0.2.29.dist-info → litellm_proxy_extras-0.2.31.dist-info}/licenses/LICENSE +0 -0
|
@@ -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
|
+
|
|
@@ -580,4 +580,20 @@ model LiteLLM_SearchToolsTable {
|
|
|
580
580
|
search_tool_info Json?
|
|
581
581
|
created_at DateTime @default(now())
|
|
582
582
|
updated_at DateTime @updatedAt
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
// SSO configuration table
|
|
586
|
+
model LiteLLM_SSOConfig {
|
|
587
|
+
id String @id @default("sso_config")
|
|
588
|
+
sso_settings Json
|
|
589
|
+
created_at DateTime @default(now())
|
|
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
|
|
583
599
|
}
|
|
@@ -41,10 +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/20251031181430_add_cache_config_table/migration.sql,sha256=Aby9tvl07fvWgqwGpkBh_m0HbAwrCAPWOPIEjND6iGg,608
|
|
44
45
|
litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
|
|
45
|
-
litellm_proxy_extras/schema.prisma,sha256=
|
|
46
|
+
litellm_proxy_extras/schema.prisma,sha256=ANWxbSA-CpEMJcji6VqU26vDegz7ReqeWCXhsAJsFGY,22898
|
|
46
47
|
litellm_proxy_extras/utils.py,sha256=2g3sHuOMy_9sjze2Kw42lBXcS6ustYBygd4vaiJ6Kkk,15679
|
|
47
|
-
litellm_proxy_extras-0.2.
|
|
48
|
-
litellm_proxy_extras-0.2.
|
|
49
|
-
litellm_proxy_extras-0.2.
|
|
50
|
-
litellm_proxy_extras-0.2.
|
|
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,,
|
|
File without changes
|
{litellm_proxy_extras-0.2.29.dist-info → litellm_proxy_extras-0.2.31.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|