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

@@ -1,5 +1,5 @@
1
1
  -- CreateTable
2
- CREATE TABLE "LiteLLM_IndexTable" (
2
+ CREATE TABLE "LiteLLM_ManagedVectorStoreIndexTable" (
3
3
  "id" TEXT NOT NULL,
4
4
  "index_name" TEXT NOT NULL,
5
5
  "litellm_params" JSONB NOT NULL,
@@ -9,9 +9,9 @@ CREATE TABLE "LiteLLM_IndexTable" (
9
9
  "updated_at" TIMESTAMP(3) NOT NULL,
10
10
  "updated_by" TEXT,
11
11
 
12
- CONSTRAINT "LiteLLM_IndexTable_pkey" PRIMARY KEY ("id")
12
+ CONSTRAINT "LiteLLM_ManagedVectorStoreIndexTable_pkey" PRIMARY KEY ("id")
13
13
  );
14
14
 
15
15
  -- CreateIndex
16
- CREATE UNIQUE INDEX "LiteLLM_IndexTable_index_name_key" ON "LiteLLM_IndexTable"("index_name");
16
+ CREATE UNIQUE INDEX "LiteLLM_ManagedVectorStoreIndexTable_index_name_key" ON "LiteLLM_ManagedVectorStoreIndexTable"("index_name");
17
17
 
@@ -590,6 +590,17 @@ model LiteLLM_SSOConfig {
590
590
  updated_at DateTime @updatedAt
591
591
  }
592
592
 
593
+ model LiteLLM_ManagedVectorStoreIndexTable {
594
+ id String @id @default(uuid())
595
+ index_name String @unique
596
+ litellm_params Json
597
+ index_info Json?
598
+ created_at DateTime @default(now())
599
+ created_by String?
600
+ updated_at DateTime @updatedAt
601
+ updated_by String?
602
+ }
603
+
593
604
  // Cache configuration table
594
605
  model LiteLLM_CacheConfig {
595
606
  id String @id @default("cache_config")
@@ -189,6 +189,7 @@ class ProxyExtrasDBManager:
189
189
  # 2. Run prisma db execute to apply the migration
190
190
  try:
191
191
  logger.info("Running prisma db execute to apply the migration diff...")
192
+ print(f"schema_path: {schema_path}")
192
193
  result = subprocess.run(
193
194
  [
194
195
  "prisma",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: litellm-proxy-extras
3
- Version: 0.3.0
3
+ Version: 0.4.1
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.*
@@ -42,11 +42,11 @@ litellm_proxy_extras/migrations/20251006143948_add_mcp_tool_permissions/migratio
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
44
  litellm_proxy_extras/migrations/20251031181430_add_cache_config_table/migration.sql,sha256=Aby9tvl07fvWgqwGpkBh_m0HbAwrCAPWOPIEjND6iGg,608
45
- litellm_proxy_extras/migrations/20251101123718_add_vector_store_index_table/migration.sql,sha256=ANtlgOP6ajFjsewKARZm7Hy_DVPiqvNNe5V5vKUAN2E,496
45
+ litellm_proxy_extras/migrations/20251101131415_add_managed_vector_store_index_table/migration.sql,sha256=Eo99s-lpTp4UnoCl2NeGRmstxEgwj_u-s2JVwGYSMEc,568
46
46
  litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
47
- litellm_proxy_extras/schema.prisma,sha256=ANWxbSA-CpEMJcji6VqU26vDegz7ReqeWCXhsAJsFGY,22898
48
- litellm_proxy_extras/utils.py,sha256=2g3sHuOMy_9sjze2Kw42lBXcS6ustYBygd4vaiJ6Kkk,15679
49
- litellm_proxy_extras-0.3.0.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
50
- litellm_proxy_extras-0.3.0.dist-info/METADATA,sha256=lsrEI2YcDZwC9ZpoD0h--bMhLGeE-Dito8TNqQyllfU,1266
51
- litellm_proxy_extras-0.3.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
52
- litellm_proxy_extras-0.3.0.dist-info/RECORD,,
47
+ litellm_proxy_extras/schema.prisma,sha256=xMOflwU-npTN6NdRYanF98EYly-S5ho8BJ8dyK0DIbw,23161
48
+ litellm_proxy_extras/utils.py,sha256=8hbLzxZ9xlg1fRC8n4Q9NroGH5CGCeuiAY3r0Qv-5bs,15728
49
+ litellm_proxy_extras-0.4.1.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
50
+ litellm_proxy_extras-0.4.1.dist-info/METADATA,sha256=BSJK-LY2GbjqURUi6uv2PrzC77XUwolbC5YU_I5SSdM,1266
51
+ litellm_proxy_extras-0.4.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
52
+ litellm_proxy_extras-0.4.1.dist-info/RECORD,,