litellm-proxy-extras 0.2.13__py3-none-any.whl → 0.2.15__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,15 @@
1
+ -- CreateTable
2
+ CREATE TABLE "LiteLLM_PromptTable" (
3
+ "id" TEXT NOT NULL,
4
+ "prompt_id" TEXT NOT NULL,
5
+ "litellm_params" JSONB NOT NULL,
6
+ "prompt_info" JSONB,
7
+ "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
8
+ "updated_at" TIMESTAMP(3) NOT NULL,
9
+
10
+ CONSTRAINT "LiteLLM_PromptTable_pkey" PRIMARY KEY ("id")
11
+ );
12
+
13
+ -- CreateIndex
14
+ CREATE UNIQUE INDEX "LiteLLM_PromptTable_prompt_id_key" ON "LiteLLM_PromptTable"("prompt_id");
15
+
@@ -520,6 +520,16 @@ model LiteLLM_GuardrailsTable {
520
520
  updated_at DateTime @updatedAt
521
521
  }
522
522
 
523
+ // Prompt table for storing prompt configurations
524
+ model LiteLLM_PromptTable {
525
+ id String @id @default(uuid())
526
+ prompt_id String @unique
527
+ litellm_params Json
528
+ prompt_info Json?
529
+ created_at DateTime @default(now())
530
+ updated_at DateTime @updatedAt
531
+ }
532
+
523
533
  model LiteLLM_HealthCheckTable {
524
534
  health_check_id String @id @default(uuid())
525
535
  model_name String
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: litellm-proxy-extras
3
- Version: 0.2.13
3
+ Version: 0.2.15
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.*
@@ -1,6 +1,5 @@
1
1
  litellm_proxy_extras/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  litellm_proxy_extras/_logging.py,sha256=7KoWerTOol5IPNyNdbZvLuSlpQbEGE235VgzwpgafKQ,393
3
- litellm_proxy_extras/migrations/20250101000000_add_health_check_fields_to_mcp_servers/migration.sql,sha256=IzXvP90W4R1vkrsP3WbARJdGLEFauW1e2czTmZaDYOM,285
4
3
  litellm_proxy_extras/migrations/20250326162113_baseline/migration.sql,sha256=9aRWmBbLf7EWbCMXifDl5zL9bAw0uPXJut1AXNKrSTE,13383
5
4
  litellm_proxy_extras/migrations/20250326171002_add_daily_user_table/migration.sql,sha256=dY-dNCLosWmXNli2B9wqX4hZpp3s0DL3IwEPtTTC134,1179
6
5
  litellm_proxy_extras/migrations/20250327180120_add_api_requests_to_daily_user_table/migration.sql,sha256=or5TaEgH4cHwR5kDvVjZvcAj1OwzTxjqwO-lxXe3FXk,110
@@ -16,6 +15,7 @@ litellm_proxy_extras/migrations/20250416185146_add_allowed_routes_litellm_verifi
16
15
  litellm_proxy_extras/migrations/20250425182129_add_session_id/migration.sql,sha256=dSjU5QavHMM60siy6f_69DZpFCA4lUfWDL0AUEPEt2g,139
17
16
  litellm_proxy_extras/migrations/20250430193429_add_managed_vector_stores/migration.sql,sha256=SmXedKWYWwYAZjg-usw-905nXxyU9SOws9teFATezUA,479
18
17
  litellm_proxy_extras/migrations/20250507161526_add_mcp_table_to_db/migration.sql,sha256=rD2PimftvFKFE1KLtCLKUzT-HJZUUNGquAEoDBJljK8,976
18
+ litellm_proxy_extras/migrations/20250507161527_add_health_check_fields_to_mcp_servers/migration.sql,sha256=IzXvP90W4R1vkrsP3WbARJdGLEFauW1e2czTmZaDYOM,285
19
19
  litellm_proxy_extras/migrations/20250507184818_add_mcp_key_team_permission_mgmt/migration.sql,sha256=G2NONS9XAMDdkH-0tpaPimK4ezs94hkwteRK1m7oA1Y,1672
20
20
  litellm_proxy_extras/migrations/20250508072103_add_status_to_spendlogs/migration.sql,sha256=V4mIhoi3n8sUzV8_YY9AA_wkgvk65m5ZOAU3_DtoUo8,77
21
21
  litellm_proxy_extras/migrations/20250509141545_use_big_int_for_daily_spend_tables/migration.sql,sha256=UPaAXsryGvVZT_SnOf-1yHu5bKPTVr2gP3zY64FKR7o,1331
@@ -32,10 +32,11 @@ litellm_proxy_extras/migrations/20250707212517_add_mcp_info_column_mcp_servers/m
32
32
  litellm_proxy_extras/migrations/20250707230009_add_mcp_namespaced_tool_name/migration.sql,sha256=L973Q5PV5pFcpuZzyOzo6aFNK02EZK-KAHfcyjtPAIU,1854
33
33
  litellm_proxy_extras/migrations/20250711220620_add_stdio_mcp/migration.sql,sha256=t3telBGnxzo8kXQYnyR69vgxcPYf9ysoWt1ySRHnJgE,381
34
34
  litellm_proxy_extras/migrations/20250718125714_add_litellm_params_to_vector_stores/migration.sql,sha256=yZfez4-HKbZeRQs4E6QhrMA7wuyrBQrYzTrW9S1HwcY,101
35
+ litellm_proxy_extras/migrations/20250802162330_prompt_table/migration.sql,sha256=rssp_rCzwY5veFUJeGSOoGOvck3IZ9sL86RuHzQJ-s0,452
35
36
  litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
36
- litellm_proxy_extras/schema.prisma,sha256=0Ir_68rt3MZ2OsTW34AqEuUvT0FBWA9YXC7icIXiSX0,20875
37
+ litellm_proxy_extras/schema.prisma,sha256=aIzWXmFV_Z73nE-hdAkkrbAD69nNZuTfnN3kTwNA0Cg,21129
37
38
  litellm_proxy_extras/utils.py,sha256=QImDkrfX_NGCp0tJ4T9IZpmXyzVZqey4jnVVEO0Hcrs,15050
38
- litellm_proxy_extras-0.2.13.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
39
- litellm_proxy_extras-0.2.13.dist-info/METADATA,sha256=9Vx7jlZ_UUFAeAXLGYGvSgJTK8aazpQKjYVU8ORr9no,1267
40
- litellm_proxy_extras-0.2.13.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
41
- litellm_proxy_extras-0.2.13.dist-info/RECORD,,
39
+ litellm_proxy_extras-0.2.15.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
40
+ litellm_proxy_extras-0.2.15.dist-info/METADATA,sha256=bH1qXgyTU95jXTWjRl4obYmGmEv3rwZ_OOfuIESlNYw,1267
41
+ litellm_proxy_extras-0.2.15.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
42
+ litellm_proxy_extras-0.2.15.dist-info/RECORD,,