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

@@ -15,3 +15,13 @@ CREATE TABLE "LiteLLM_MCPServerTable" (
15
15
  CONSTRAINT "LiteLLM_MCPServerTable_pkey" PRIMARY KEY ("server_id")
16
16
  );
17
17
 
18
+ -- Migration for existing tables: rename alias to server_name if upgrading
19
+ DO $$
20
+ BEGIN
21
+ IF EXISTS (SELECT 1 FROM information_schema.columns WHERE table_name = 'LiteLLM_MCPServerTable' AND column_name = 'alias') THEN
22
+ ALTER TABLE "LiteLLM_MCPServerTable" RENAME COLUMN "alias" TO "server_name";
23
+ END IF;
24
+ END $$;
25
+ -- Migration for existing tables: add alias column if upgrading
26
+ ALTER TABLE "LiteLLM_MCPServerTable" ADD COLUMN IF NOT EXISTS "alias" TEXT;
27
+
@@ -166,6 +166,7 @@ model LiteLLM_ObjectPermissionTable {
166
166
  // Holds the MCP server configuration
167
167
  model LiteLLM_MCPServerTable {
168
168
  server_id String @id @default(uuid())
169
+ server_name String?
169
170
  alias String?
170
171
  description String?
171
172
  url String?
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: litellm-proxy-extras
3
- Version: 0.2.11
3
+ Version: 0.2.12
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.*
@@ -14,7 +14,7 @@ litellm_proxy_extras/migrations/20250416151339_drop_tag_uniqueness_requirement/m
14
14
  litellm_proxy_extras/migrations/20250416185146_add_allowed_routes_litellm_verification_token/migration.sql,sha256=XGyDLGakqBt30xuGS-RT5tWhk_Ki7teenxpvKDkIo2E,119
15
15
  litellm_proxy_extras/migrations/20250425182129_add_session_id/migration.sql,sha256=dSjU5QavHMM60siy6f_69DZpFCA4lUfWDL0AUEPEt2g,139
16
16
  litellm_proxy_extras/migrations/20250430193429_add_managed_vector_stores/migration.sql,sha256=SmXedKWYWwYAZjg-usw-905nXxyU9SOws9teFATezUA,479
17
- litellm_proxy_extras/migrations/20250507161526_add_mcp_table_to_db/migration.sql,sha256=C_0iU6F-XUST0BekRSrFGMW69_pwBLSS7Pu5HvGNJ7c,511
17
+ litellm_proxy_extras/migrations/20250507161526_add_mcp_table_to_db/migration.sql,sha256=rD2PimftvFKFE1KLtCLKUzT-HJZUUNGquAEoDBJljK8,976
18
18
  litellm_proxy_extras/migrations/20250507184818_add_mcp_key_team_permission_mgmt/migration.sql,sha256=G2NONS9XAMDdkH-0tpaPimK4ezs94hkwteRK1m7oA1Y,1672
19
19
  litellm_proxy_extras/migrations/20250508072103_add_status_to_spendlogs/migration.sql,sha256=V4mIhoi3n8sUzV8_YY9AA_wkgvk65m5ZOAU3_DtoUo8,77
20
20
  litellm_proxy_extras/migrations/20250509141545_use_big_int_for_daily_spend_tables/migration.sql,sha256=UPaAXsryGvVZT_SnOf-1yHu5bKPTVr2gP3zY64FKR7o,1331
@@ -32,9 +32,9 @@ litellm_proxy_extras/migrations/20250707230009_add_mcp_namespaced_tool_name/migr
32
32
  litellm_proxy_extras/migrations/20250711220620_add_stdio_mcp/migration.sql,sha256=t3telBGnxzo8kXQYnyR69vgxcPYf9ysoWt1ySRHnJgE,381
33
33
  litellm_proxy_extras/migrations/20250718125714_add_litellm_params_to_vector_stores/migration.sql,sha256=yZfez4-HKbZeRQs4E6QhrMA7wuyrBQrYzTrW9S1HwcY,101
34
34
  litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
35
- litellm_proxy_extras/schema.prisma,sha256=sKIAhiHqvCFkEre8iHTaQY61MKE4SyMjnzJKZBhccU0,20718
35
+ litellm_proxy_extras/schema.prisma,sha256=r5ucVhoOdFdEbR-ePJGmn_gbKzSpVNfr7NP0KZkPcQ0,20741
36
36
  litellm_proxy_extras/utils.py,sha256=QImDkrfX_NGCp0tJ4T9IZpmXyzVZqey4jnVVEO0Hcrs,15050
37
- litellm_proxy_extras-0.2.11.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
38
- litellm_proxy_extras-0.2.11.dist-info/METADATA,sha256=bTt-shIFFCjyOXTK5G8EusYBhuan6xPIfPvdi5X2DYU,1267
39
- litellm_proxy_extras-0.2.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
40
- litellm_proxy_extras-0.2.11.dist-info/RECORD,,
37
+ litellm_proxy_extras-0.2.12.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
38
+ litellm_proxy_extras-0.2.12.dist-info/METADATA,sha256=1DiJdGnxr8dH2rLG62Sa1SrgYhQk6WbMKuBFTDOamjM,1267
39
+ litellm_proxy_extras-0.2.12.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
40
+ litellm_proxy_extras-0.2.12.dist-info/RECORD,,